FireFox下hr的css样式

FireFox下hr的css样式

当使用如下css定义的时候,在IE当中效果不错,但是在FireFox浏览器情况下,效果不够理想,基本能时虚线不虚,显得有些粗,看起来有虚状。

hr {height: 1px;width=97%;border:1px dashed black;text-align:left;}

按照如下修改以后,可以兼顾FireFox和IE。

hr {height: 1px;width=97%;border:0px;border-top:1px dashed black;text-align:left;}

posted @ 2010-11-04 17:26  wanyao  阅读(780)  评论(0编辑  收藏  举报