行内元素没有内容时设置默认的宽高

 span {
     line-height: 20px;
     background-color: yellowgreen;

     &:empty {
         display: inline-block;
         width: 1px;
         height: 20px;
     }
}
<span contenteditable></span>

猜你喜欢

转载自www.cnblogs.com/guojbing/p/12074831.html