若要去除它,通常的方法为: a:focus,input:focus{ -webkit-tap-highlight-color:rgba(0,0,0,0); } 不过看起来,这种方案在android 4.0以上版本的浏览器中是无效的。 一种在android 4.0以上版本浏览器中可以移除高亮边框的办法是: a:focus,input:focus{ -webkit-user-modify:read-write-plaintext-only; } ...
通过传递不同的参数,可以去掉更多的虚线框,比如”BUTTON”可以去掉button按钮的虚线边框。 参数要用大写字母。 http://www.decimage.com/web/remove-dotted-border-when-click-on-link-or-input.html#
input,button,a{outline:0 none !important;blr:expression(this.onFocus=this.blur()); }
安卓webview中的html界面,点击时产生的边框,可以在js的代码中给元素添加如下属性:-webkit-tap-highlight-color即可去掉边框。1.webkit内核的浏览器,当用户点击一个链接或者通过js定义的可点击元素的时候,会出现一个半透明的灰色背景或者红色的边框。2.如果想要禁用高亮,可设置颜色的alpha值为0,也就...
这条代码就可以去掉蓝色的覆盖层 去掉了蓝色的覆盖层后,我发现还会有黄色的边框出现,加上outline: none;就可以解决了。这样长按a就不会出现蓝色的覆盖层了。 纠正:-webkit-user-modify: read-write-plaintext-only;这条代码设定链接的内容是可以修改的,并不能去掉覆盖层。
遇到过同样的问题,可以设置 outline:0这个属性来实现。在一个class里面写入这个属性,然后引用就可以了。
<input type="text" style="border:0;outline:none;width:200px;height:40px;"/><style> .edit{border:0;outline:none;width:200px;height:40px;}</style><input type="text" name="" value="" class="edit" />
input 控件默认有边框效果,当使用 input 标记定义各种按钮时,通常需要清除其边框。其代码为“ input { border:0;} ”。A.正确B.错误
添加属性 :focus{outline:none} 就可以去掉默认点击时,边框会出现的蓝色边框。 :focus 选择器用于选取获得焦点的元素。 提示:接收键盘事件或其他用户输入的元素都允许 :focus 选择器。 不想点击时每次都要设置的话,最好在默认样式中就设置: 1 input,textarea,select,a:focus { ...
<input type="submit" value="真提交"> <button type="button">假提交</button> <input type="button" value="假提交"> input标签 <input>的工作方式因其类型属性的值而有很大差异,如果未指定此属性,则采用的默认类型为 text 可用的值包括: button:无缺省行为按钮。 checkbox: 复选框。必须使用 val...