首页 >
css浮动后字体居中显示 |css清除父标签字体样式
css模板编辑,json div css 分屏,css div布局板块距离,css按钮加链接代码,css鼠标划过图片翻转效果,css每条样式用什么隔开,css清除父标签字体样式
.box {
float: left;
width: 200px;
height: 200px;
background-color: #ccc;
margin-right: 20px;
display: flex;
justify-content: center;
align-items: center;
}
.box p {
display: inline;
}这就是如何让浮动元素内的文字居中显示的技巧。使用 display: flex 属性可以很方便地居中元素,同时为了让元素正常显示,大家可以使用 display: inline 属性将块级元素转化为行内元素。