今天图老师小编给大家介绍下CSS定义HR水平线的几种样式,平时喜欢CSS定义HR水平线的几种样式的朋友赶紧收藏起来吧!记得点赞哦~
【 tulaoshi.com - Web开发 】
对于CSS定义hr /水平线标签,常用的有以下几种样式,仅供参考。对于
(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/webkaifa/)程序代码
height:1px;border:none;
的主要用途就是Css Reset,关于Css Reset可以搜索下博客里其他文章介绍。
HTML代码
(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/webkaifa/)!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
titleCSS定义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
来源:http://www.tulaoshi.com/n/20160219/1614012.html
看过《CSS定义HR水平线的几种样式》的人还看了以下文章 更多>>