根据题意要实现的效果如图:
image.png
要使用标签,那就是 fieldset 和 legend
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>css实现中间文字 两端横线的两种方法</title>
<style>
fieldset {
border: none;
border-top: 1px solid #ccc;
text-align: center;
width: 240px;
margin: 0 auto;
}
legend {
padding: 0 10px;
color: #ccc;
font-size: 16px;
}
</style>
</head>
<body>
<fieldset><legend><span>登录</span></legend></fieldset>
</body>
</html>