怎么用css写出一个1px的水平分割线。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎么用css写出一个1px的水平分割线。相关的知识,希望对你有一定的参考价值。

<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>分割线</title>
<style type="text/css">
div 
 height:1px;
 width:100%;
 background:#00CCFF;
 overflow:hidden;
 
</style>
</head>
<body>
<div> </div>
</body>
</html>

参考技术A <!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>分割线</title>
<style type="text/css">
div
height:1px;
width:100%;
background:#00CCFF;
overflow:hidden;

</style>
</head>
<body>
<div> </div>
</body>
</html>
参考技术B <!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>横线代码</title>
<style type="text/css">
<!--
#Layer1
position:absolute;
width:295px;
height:50px;
z-index:1;
left: 10px;
top: 183px;

-->
</style>
</head>

<body>
<hr align="center" width="500" size="50" color="#FF0000"/>
<hr align="center" width="300" size="30" color="#000000"/>
<hr align="center" width="100" size="1" color="#00ff00"/>
<hr align="center" width="300" size="1" color="#0000FF"/>
<hr align="center" width="500" size="1" color="#FF00"/>
<hr align="center" width="500" size="1" color="#FF00"/>
删除线删除线删除线删除线删除线删除线删除线
<div id="Layer1">
<hr align="center" width="500" size="1" color="#000000"/></div>
</body>
</html>
参考技术C <!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>分割线</title>
<style type="text/css">
div
height:1px;
width:100%;
background:#00CCFF;
overflow:hidden;

</style>
</head>
<body>
<div> </div>
</body>
</html>

一像素水平分割线本回答被提问者采纳

以上是关于怎么用css写出一个1px的水平分割线。的主要内容,如果未能解决你的问题,请参考以下文章

div css 怎么在文本中加分割线 ?

如何使用 html div 标签和 css 进行水平分割

bootstrap中水平分割线怎么写

div css分割线用哪个标签控制最好?

css用背景图片制作导航栏分割线

在bootstrap中怎样输入水平分割线?