css實現文字兩端對齊

 

css實現文字兩端對齊,以下效果:css

 文字兩端對齊僅僅使用使用text-algin:justify 沒法實現預期效果,這裏咱們借用僞類(::after)來實現文字的兩端對齊。spa

 具體代碼以下:code

 

<style>
  .container>li{
    margin:0.5rem auto;
    width:4rem;
    height: 0.5rem;
    line-height: 0.5rem;
    border:1px solid #0000ff;
  }
  .justify {
    display: inline-block;
    vertical-align: top;
    width:100%;
    text-align: justify;
  }
  .justify::after{
    content:"";
    display: inline-block;
    width:100%;
    overflow:hidden;
    height:0;
  }
</style>

<ul class="container">
  <li >
    <p class="justify">集合地點在哪裏呀</p>
  </li>
  <li>
    <p class="justify">兩端對齊</p>
  </li>
  <li >
    <p class="justify">看,我兩端對齊了</p>
  </li>
  <li >
    <p class="justify">左右</p>
  </li>
</ul>

 若有錯誤還望指正 ^-^ blog

相關文章
相關標籤/搜索