css如何在文字两边加上横线
更新:HHH   时间:2023-1-7


这篇文章主要介绍css如何在文字两边加上横线,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!

css中可利用:before、:after和content属性来在文字两边加上横线;语法“E:before,E:after{content:"";flex:1 1;border-bottom:2px solid;}”,E为包含文字的元素。

css在文字两边加上横线的方法

在css中,可以利用:before、:after选择器和content属性来实现。

:before 选择器向选定的元素前插入内容,:after 选择器向选定的元素之后插入内容。

content 属性与 :before 及 :after 伪元素配合使用,来插入生成内容。

示例:

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<style>
			h5 {
				display: flex;
				flex-direction: row;
			}
			
			h5:before,
			h5:after {
				content: "";
				flex: 1 1;
				border-bottom: 2px solid #000;
				margin: auto;
			}
			
			img {
				height: 100px;
				width: 100px;
				border-radius: 50%;
			}
		</style>
	</head>

	<body>
		<h5>天达云</h5>
	</body>

</html>

以上是“css如何在文字两边加上横线”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注天达云行业资讯频道!

返回web开发教程...