css怎么在文字两边加上横线

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

本教程操作环境:Windows7系统、css3版本、Dell G3电脑。

教程推荐:css视频教程

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

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

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

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

示例:

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

	<body>
		<h4>编程之家</h4>
	</body>

</html>

效果图:

1.png

更多编程相关知识,请访问:编程教学!!

相关文章

Css3如何实现鼠标移上变长特效?(图文+视频)
css3怎么实现鼠标悬停图片时缓慢变大效果?(图文+视频)
jquery如何实现点击网页回到顶部效果?(图文+视频)
css3边框阴影效果怎么做?(图文+视频)
css怎么实现圆角边框和圆形效果?(图文+视频教程)
Css3如何实现旋转移动动画特效