实现如下绿色横线效果:
html代码:
<body>
<div>
<h1>今天天气真好</h1>
</div>
</body>
css代码:(使用伪类实现)
h1{
text-align: center;
}
div:after{
display:block;
content:"";
width:80px;
border-bottom:3px solid lightgreen;
margin:0 auto
}
实现啦~~~
实现如下绿色横线效果:
html代码:
<body>
<div>
<h1>今天天气真好</h1>
</div>
</body>
css代码:(使用伪类实现)
h1{
text-align: center;
}
div:after{
display:block;
content:"";
width:80px;
border-bottom:3px solid lightgreen;
margin:0 auto
}
实现啦~~~