Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
li タグの境界線にコンテンツだけでなく数字を含める方法はありますか?
これが私がやろうとしていることのjsfiddleです: http://jsfiddle.net/Markinhos/VSnnd/8/
境界線に数字の 2 を含めたい。
追加list-style-position:inside;
list-style-position:inside;
.borderlist { list-style-position:inside; border: 1px solid black; }
list-style-position: inside;
は、探している CSS 属性です。リスト番号は、CSS ボックス モデル内にあるかのように扱われます。
あなたはこれを行うことができますlist-style-position: inside;
CSS の list-style-position プロパティは、主要なブロック ボックス内のマーカー ボックスの位置を指定します。: MDN
jsフィドル