美文网首页
css实现两端对齐

css实现两端对齐

作者: Dr丶net | 来源:发表于2019-08-23 14:51 被阅读0次

在写页面的时候很多情况想实现字体两端对齐,如下图:

<div class="item">
  <p>
    <span class="label">姓名</span>:
    <span class="value">张三</span>
  </p>
  <p>
    <span class="label">家庭住址</span>:
    <span class="value">北京市朝阳区</span>
  </p>
</div>
<style>
  .value{
    width:120px;
    color:red;
  }
 .label{
    display: inline-block;
    height: 100%;
    width: 100px;
    text-align: justify;
    vertical-align: top;
  }
  .label::after {
    display: inline-block;
    width: 100%;
    content: '';
    height: 0;
  }
  或
  /*此方法不兼容移动端iOS(不支持text-align-last属性)*/
  .label{
    display: inline-block;
    height: 100%;
    width: 100px;
    vertical-align: top;
    text-align-last: justify;
  }
</style>

相关文章

网友评论

      本文标题:css实现两端对齐

      本文链接:https://www.haomeiwen.com/subject/swqtectx.html