Home  >  Article  >  Web Front-end  >  Introduction to the style of CSS defining HR horizontal lines

Introduction to the style of CSS defining HR horizontal lines

高洛峰
高洛峰Original
2017-03-27 18:00:454361browse

CSS defines several styles of HR horizontal lines. Don’t underestimate the HR horizontal lines. Once used, it will add a lot of color to your web page. This piece of code defines several beautiful HR styles and colors for your reference. , if you like it, just copy the code and use it.

The effect is as follows

Introduction to the style of CSS defining HR horizontal lines

<!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>

The above is the detailed content of Introduction to the style of CSS defining HR horizontal lines. For more information, please follow other related articles on the PHP Chinese website!

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