重複の可能性:
HTML + CSS: ピリオドなしの順序付きリスト?
ドット「.」を削除したい OLより(オーダーリスト)
<ol>
<li>One</li>
<li>Two</li>
</ol>
結果
1. One
2. Two
必要な結果
1 One
2 Two
重複の可能性:
HTML + CSS: ピリオドなしの順序付きリスト?
ドット「.」を削除したい OLより(オーダーリスト)
<ol>
<li>One</li>
<li>Two</li>
</ol>
結果
1. One
2. Two
必要な結果
1 One
2 Two
これは IE8+ およびその他のブラウザで動作します
ol {
counter-reset: item;
list-style-type: none;
}
li { display: block; }
li:before {
content: counter(item) " ";
counter-increment: item
}
あるいは:
ol li:before {
content: counter(level1) " "; /*Instead of ". " */
counter-increment: level1;
}
古いブラウザもサポートしたい場合は、これを行うことができます (礼儀 neemzy):
ol li a {
float: right;
margin: 8px 0px 0px -13px; /* collapses <a> and dots */
padding-left: 10px; /* gives back some space between digit and text beginning */
position: relative; z-index: 10; /* make the <a> appear ABOVE the dots */
background-color: #333333; /* same background color as ol ; the dots are now invisible ! */
}