CSS小技巧

css列表换行小技巧

2019-09-27  本文已影响0人  风凌摆渡人

列表一行容不下自动换行 追加内容居右居下!

效果图

实现思路1、追加伪类占用位置迫使内容换行,后续内容居右实现效果

html

  <div class="content">
    <ul class="lst">
      <li v-for="(itm,inx) in list"
          :key="inx">
        <a>{{itm.title}}</a><span>{{itm.createTime}}</span></li>
    </ul>
  </div>

css:

.lst {
  list-style: none;
  padding-left: 0;
  text-align: left;
  font-size: 14px;
  font-family: "Microsoft YaHei";
  line-height: 20px;
  li {
    position: relative;
    & > a {
      color: #333;
      &::after {
        content: "";
        width: 90px;
        display: inline-block;
      }
    }
    & > span {
      position: absolute;
      color: #3064bb;
      right: 10px;
      bottom: 0;
    }
  }
}
上一篇下一篇

猜你喜欢

热点阅读