CSS 大纲 属性 在把手内部不起作用。为什么?

CSS outline property is not working inside the handlebars. Why?

我在 handlebars 页面内有一个登录表单,我想将该元素的默认大纲 属性 设置为 none。怎么做?

把手文件中的代码

<input type="text" class="form-control  w-25 mt-2  border-dark 
    rounded-0" name="Name" aria-describedby="emailHelp"
                    placeholder="Enter Name" style="outline: none;" >

这不会在鼠标单击时删除 chrome 的默认蓝色轮廓。

尝试编写以下代码..

input[type="text"]{
outline:none;
}