web-dev-qa-db-ja.com

HTMLリストの番号のスタイルを設定する方法は?

番号付きリストの番号のみのスタイルまたはサイズを増やすことはできますか?

順序付きリストolwikihow のようなものにCSSのみを使用して変換することを計画しています。

これが遊ぶ例です: http://jsfiddle.net/ejRzy/1/

20
Filype

CSS3を使用して実行できますが、100%クロスブラウザー(IE7)は使用できません。 pseudo:before要素、counter-resetおよびcounter-incrementを使用すると、リストスタイルを非表示にして独自に作成できます。

これがその方法を概説する記事です: スタイリング順序付きリスト番号

そして here はその記事から構築されたデモです。

また、恐ろしいリンクの腐敗の場合-必要なメインCSSコードは次のとおりです(これは任意の順序付きリストに適用できます)

ol {
    counter-reset:li; /* Initiate a counter */
    margin-left:0; /* Remove the default left margin */
    padding-left:0; /* Remove the default left padding */
}
ol > li {
    position:relative; /* Create a positioning context */
    margin:0 0 6px 2em; /* Give each list item a left margin to make room for the numbers */
    padding:4px 8px; /* Add some spacing around the content */
    list-style:none; /* Disable the normal item numbering */
    border-top:2px solid #666;
    background:#f6f6f6;
}
ol > li:before {
    content:counter(li); /* Use the counter as content */
    counter-increment:li; /* Increment the counter by 1 */
    /* Position and style the number */
    position:absolute;
    top:-2px;
    left:-2em;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
    width:2em;
    /* Some space between the number and the content in browsers that support
       generated content but not positioning it (Camino 2 is one example) */
    margin-right:8px;
    padding:4px;
    border-top:2px solid #666;
    color:#fff;
    background:#666;
    font-weight:bold;
    font-family:"Helvetica Neue", Arial, sans-serif;
    text-align:center;
}
li ol,
li ul {margin-top:6px;}
ol ol li:last-child {margin-bottom:0;}​

このコードは、カスタムの順序付きリストを生成します。あなたが求めたスタイルではありませんが。カスタマイズ作業はあなたにお任せします:)乾杯

43
rlemon

一種の....番号に必要なフォントサイズで注文リストをスタイルし、すべてのリストアイテムをスパンでラップして、それらに異なるスタイルを与えます。

http://jsfiddle.net/keith_nicholas/MEHXj/

13
Keith Nicholas