Home  >  Article  >  Web Front-end  >  关于分割线 hr 在各浏览器中的差异_HTML/Xhtml_网页制作

关于分割线 hr 在各浏览器中的差异_HTML/Xhtml_网页制作

WBOY
WBOYOriginal
2016-05-16 16:36:491546browse

在做页面是有时候会用到分割线 hr,但是在 ie6 和 ie7 下显示很蛋疼,本文将教你如何写出兼容各浏览器的 hr。
 
首页我们先了解下 hr 在各浏览器下的差异,如下表格:

比如想创建一个实际高度为 3px,边框为 1px,边框颜色为 #07f,背景色为 #f60 的分割线:

复制代码
代码如下:

hr{
height:1px;
background-color:#f60;
border:1px solid #000;
*height:3px;/* for ie6 ie7 */
color:#f60;/* for ie6 ie7 */
}
@-moz-document url-prefix(){ hr{height:3px;}} /* for firefox */
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn