魔法CSS(1)——消失的list-style
阿新 • • 發佈:2018-12-21
<ul> <li> <p>啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊 <span class="check"/> </p> </li> <li> <p>預約管理/會員管理/資料分析/店鋪 <span></span></p> </li> <li>管理基本店務管理功E <span class="check"/></li> <li>基礎版門店管現權唱。 <span class="check"/></li> <li>始終跟隨列表高度垂直居 <span class="check"/></li> </ul>
<style> body{ font-size:3vw; margin:0; padding:0; } ul{ margin:0; padding: 0; } li { text-align: left; list-style-position: inside; white-space: nowrap } span { position: relative; display: inline-block; width: 16px; height: 15px; margin: 0 10px; } span::after { content: ""; position: absolute; left: 0; width: 100%; height: 50%; border: 2px solid #000; border-radius: 1px; border-top: none; border-right: none; background: transparent; transform: rotate(-45deg); } p{ display: inline-flex; justify-content: space-between; align-items: center; white-space: normal; width:96%; } </style>