如何风格HTML名单上的号码是多少?(How to style the number on a ht

2019-06-25 17:44发布

是否有可能样式或增加在有序列表中数字的大小?

我就准备把一个有序列表ol成类似wikiHow上只使用CSS的步骤。

这里是玩一个例子: http://jsfiddle.net/ejRzy/1/

Answer 1:

它可以使用CSS3但不是100%跨浏览器(即IE7)来完成。 使用伪:前元素和计数器复位和计数器增量您可以隐藏列表样式,并创建你自己的。

这里是一个文章,概述如何: 造型有序列表编号

而这里是那篇文章建立了一个演示。

另外,在可怕的链接腐烂的情况 - 这里是所需的主要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;}​

此代码将产生一个自定义排序列表; 虽然不是你的风格要求。 我会离开的定制工作,你高达欢呼:)



Answer 2:

那种....你想要的数字字体大小样式的有序列表,然后包裹在跨越所有列表项,并给他们一个不同的风格。

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



文章来源: How to style the number on a html list?