20

番号付きリストのみのスタイルを設定したり、数字のサイズを大きくしたりすることはできますか?

CSSのみを使用して、順序付きリストをwikihowolステップのようなものに変えることを計画しています。

遊ぶ例を次に示します: http://jsfiddle.net/ejRzy/1/

4

2 に答える 2

43

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

方法を概説した記事は次のとおりです:順序付けられたリスト番号のスタイリング

そして、これがその記事から構築されたデモです。

また、恐ろしいリンクの腐敗の場合-必要なメインの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;}​

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

于 2012-06-25T03:02:47.490 に答える
13

種類....番号に必要なフォントサイズで順序付きリストのスタイルを設定してから、すべてのリストアイテムをスパンでラップし、別のスタイルを指定します。

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

于 2012-06-25T02:23:15.797 に答える