欢迎各位兄弟 发布技术文章
这里的技术是共享的
div{
height: 166px;
overflow: hidden;
vertical-align: middle;
/*flex 布局*/
display: flex;
/*实现垂直居中*/
align-items: center;
/*实现水平居中*/
justify-content: center;
text-align: justify; /*这个好像是实现了左右对齐,跟左对齐还是有区别的*/
}
align-items: center; (应该是display: flex情况下) 表示里面元素水平对齐方式 为居中对齐
text-align:justify (应该是display: flex情况下) 是两端对齐的意思
.box1{ width:500px; line-height:20px; margin:10px auto; background-color:#cdd; text-align:justify}
.box2{ width:500px; line-height:20px; margin:10px auto; background-color:#cdd; text-align:left;}