css 分割线中间带文字

效果图

在这里插入图片描述

代码块(自适应)

	<div class="line">
	  <span class="text">我是文字</span>
	</div>
	.line{
	  height:0;
	  border-top:1px solid #000;
	  text-align:center;
	}
	.text{
	  position:relative;
	  top:-14px;
	  background-color:#fff;
	}

你可能感兴趣的:(css,前端)