CSS to line break before/after a particular `inline-block` item

后端 未结 9 1577
再見小時候
再見小時候 2020-11-27 09:36

Let\'s say I have this HTML:

Features

  • Smells Good
  • <
9条回答
  •  温柔的废话
    2020-11-27 10:27

    A better solution is to use -webkit-columns:2;

    http://jsfiddle.net/YMN7U/889/

     ul { margin:0.5em auto;
    -webkit-columns:2;
    }
    

提交回复
热议问题