css定义hr水平线的多种样式

发布时间:2020-01-28编辑:脚本学堂
本文介绍了hr水平线的多种样式,用css代码定义hr水平线的样式,有需要的朋友参考下。

如何用css定义<hr />水平线标签,常用的有以下几种样式。
height:1px;border:none;

相关阅读:

hr水平线标签

例子:
 

复制代码 代码示例:
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
 <title>css定义hr水平线</title>
 <style type="text/css">
 <!--
.hr0{ height:1px;border:none;border-top:1px dashed #0066cc;}
.hr1{ height:1px;border:none;border-top:1px solid #555555;}
.hr2{ height:3px;border:none;border-top:3px double red;}
.hr3{ height:5px;border:none;border-top:5px ridge green;}
.hr4{ height:10px;border:none;border-top:10px groove skyblue;}
 -->
 </style>
</head>
<body>
<hr class="hr0" />
<hr class="hr1" />
<hr class="hr2" />
<hr class="hr3" />
<hr class="hr4" />
</body>
</html>