text align和float区别

这区别太大了:text-align :center 指的元素里面文本的对齐方式(居中)float:left 指元素本身的位置,漂浮在左边

.block {
  text-align:right;
}

.el-pagination__sizes {
    margin: 0 10px 0 0;
    font-weight: 400;
    color: #606266;
    float: left;
}

具体代码

猜你喜欢

转载自blog.csdn.net/weixin_36869329/article/details/81707702
今日推荐