首页 > 其他 > 详细

Demo—标题左右两侧的对等横线

时间:2018-01-29 14:29:13      阅读:222      评论:0      收藏:0      [点我收藏+]
<!doctype html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>各种类型的线条</title>
	<style type="text/css">
		*{
			margin: 0;
			padding: 0;
		}
		.container{
			height: 100px;
			font-size: 24px;
			font-weight: bold;
			background: #f3f3f3;
			margin-bottom: 30px;
			text-align: center;
			line-height: 100px;
		}
		.line_one h3{
			vertical-align: middle;		
			text-align: center;
			line-height: 100px;
		}
		.line_one h3 span{
			vertical-align: middle;	
			display: inline-block;	
			padding: 0 50px;
		}
		.line_one h3:before,.line_one h3:after{
			display: inline-block;
			vertical-align: middle;
			content: "";
			width: 100px;
			height: 3px;
			background: #000000;

		}
		.line_two span{
			letter-spacing: -1px;
		}
		.line_two strong{
			padding: 0 50px;
		}
	</style>
</head>
<body>
	<div class="container line_one">
		<h3><span>世界那么大</span></h3>
	</div>
	<div class="container line_two">
		<h3>
			<span>—————————</span>
			<strong>世界那么大</strong>
			<span>—————————</span>
		</h3>
	</div>
	<div class="container line_four">
		
	</div>
	<div class="container line_five">
		
	</div>
	<div class="container line_six">
		
	</div>
	<div class="container line_seven">
		
	</div>
</body>
</html>

  

Demo—标题左右两侧的对等横线

原文:https://www.cnblogs.com/witkeydu/p/8376654.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!