如何解决IE浏览器下点击出现虚线框问题
有时候在一个页面用到收放功能的时候时,总有一个虚线框在触发收放的功能按钮上,显得特别刺眼,那如何去除这个虚线框呢?
虽然从可用性的角度,隐藏虚线框的做法会让键盘偏执狂不满。但从视觉上,有时候虚线框确实影响美观。
方法一:
IE 下可使用其私有的html属性:hideFocus,在标签的结构中加入 hidefocus=”true” 属性。即:
《a href=““ hidefocus=“true“ title=“xx“》xxx《/a》
而在 Firfox 浏览器中则相对比较容易,直接给标签 a 定义样式 outline:none; 就可以了,即:
.HideFocus {
outline:none;
}
方法二:
也可以仅用 CSS 来控制,即对 IE 的情形使用 expression 表达式,但不推荐使用,毕竟 expression 在性能上有问题。
.HideFocus {
hide-focus: expression(this.hideFocus=true); /* for ie 5+ */
outline: none; /* for firefox 1.5 + */
}
opera9 似乎默认就不显示焦点虚线框。
除链接外,该 CSS 同样适用于 input 和 button 标签。
IE6, IE7, FF1.5, FF2, Opera9 测试通过。
☆html里,如何去掉点击map里area的边框
去掉html中点击map里area的边框与去掉点击链接时出现的虚线框类似,本文举例来说明去掉点击map里area的边框的两种方法,分享给大家,希望能给您带来帮助。
1.《html》
2.《body》
3.《img src=“pic.jpg“ width=“134“ height=“115“ border=“0“ usemap=“#Map“ hidefocus=“true“ /》
4.《map name=“Map“ id=“Map“》
5.《area shape=“poly“ coords=“44,44,61,40,77,45,95,55,105,66,57,76,16,62,32,58,27,55,40,50“ href=“link_to.html“ /》
6.《/map》
7.《/body》
8.《/html》
1、第一种方法是:在《img》 标签中加入 hidefocus=“true“
Html代码
《img src=“pic.jpg“ width=“134“ height=“115“ border=“0“ usemap=“#Map“ hidefocus=“true“ /》
《img src=“pic.jpg“ width=“134“ height=“115“ border=“0“ usemap=“#Map“ hidefocus=“true“ /》
2、第二种方法是:在需要去掉边框的《area》 标签中加入 onfocus=“blur(this);“ (如果area区域较多,则每个都要加,那就显得有些麻烦了,可以用第一种方法)
Html代码
《area shape=“poly“ coords=“44,44,61,40,77,45,95,55,105,66,57,76,16,62,32,58,27,55,40,50“ href=“link_to.html“ onfocus=“blur(this);“ /》
《area shape=“poly“ coords=“44,44,61,40,77,45,95,55,105,66,57,76,16,62,32,58,27,55,40,50“ href=“link_to.html“ onfocus=“blur(this);“ /》
input type 具体什么意思
设置文本框(文本域)的类型。
如:input type=“hidden“ 隐藏文本域
input type=“text“ 单行文本框