Customize list item bullets using CSS

前端 未结 12 1188
感动是毒
感动是毒 2020-12-15 03:17

Is it possible to change the size of an

  • element\'s bullet?

    Take a look at the code below:

    li {
        list-sty         
    
    
            
  • 相关标签:
    12条回答
    • 2020-12-15 03:52

      You mean altering the size of the bullet, I assume? I believe this is tied to the font-size of the li tag. Thus, you can blow up the font-size for the LI, then reduce it for an element contained inside. Kind of sucks to add the extra markup - but something like:

      li {font-size:omgHuge;}
      li span {font-size:mehNormal;}
      

      Alternately, you can specify an image file for your list bullets, that could be as big as you want:

      ul{
        list-style: square url("38specialPlusP.gif");
       }
      

      See: http://www.w3schools.com/css/css_list.asp

      0 讨论(0)
    • 2020-12-15 03:52

      Depending on the level of IE support needed, you could also use the :before selector with the bullet style set as the content property.

      li {  
        list-style-type: none;
        font-size: small;
      }
      
      li:before {
        content: '\2022';
        font-size: x-large;
      }
      

      You may have to look up the HTML ASCII for the bullet style you want and use a converter for CSS Hex value.

      0 讨论(0)
    • 2020-12-15 03:52
      <ul>
          <li id="bigger"></li>
          <li></li>
          <li></li>
        </ul>
      
        <style>
           #bigger .li {height:##px; width:##px;}
        </style>
      
      0 讨论(0)
    • 2020-12-15 03:54

      Based on @dzimney answer and similar to @Crisman answer (but different)

      That answer is good but has indention problem (bullets appear inside of li scope). Probably you don't want this. See simple example list below (this is a default HTML list):

      • Lorem ipsum dolor sit amet, ei cum offendit partiendo iudicabit. At mei quaestio honestatis, duo dicit affert persecuti ei. Etiam nusquam cu his, nec alterum posidonium philosophia te. Nec an purto iudicabit, no vix quod clita expetendis.

      • Quem suscipiantur no eos, sed impedit explicari ea, falli inermis comprehensam est in. Vide dicunt ancillae cum te, habeo delenit deserunt mei in. Tale sint ex his, ipsum essent appellantur et cum.

      But if you use the mentioned answer the list will be like below (ignoring the size of the bullets):

      Lorem ipsum dolor sit amet, ei cum offendit partiendo iudicabit. At mei quaestio honestatis, duo dicit affert persecuti ei. Etiam nusquam cu his, nec alterum posidonium philosophia te. Nec an purto iudicabit, no vix quod clita expetendis.

      Quem suscipiantur no eos, sed impedit explicari ea, falli inermis comprehensam est in. Vide dicunt ancillae cum te, habeo delenit deserunt mei in. Tale sint ex his, ipsum essent appellantur et cum.


      So I recommend this approach that resolves the issue:

      li {
          list-style-type: none;
          position: relative;    /* It's needed for setting position to absolute in the next rule. */
      }
      
      li::before {
          content: '■';
          position: absolute;
          left: -0.8em;          /* Adjust this value so that it appears where you want. */
          font-size: 1.1em;      /* Adjust this value so that it appears what size you want. */
      }
      <ul>
          <li>Lorem ipsum dolor sit amet, ei cum offendit partiendo iudicabit. At mei quaestio honestatis, duo dicit affert persecuti ei. Etiam nusquam cu his, nec alterum posidonium philosophia te. Nec an purto iudicabit, no vix quod clita expetendis.</li>
          <li>Quem suscipiantur no eos, sed impedit explicari ea, falli inermis comprehensam est in. Vide dicunt ancillae cum te, habeo delenit deserunt mei in. Tale sint ex his, ipsum essent appellantur et cum.</li>
      </ul>

      0 讨论(0)
    • 2020-12-15 04:00

      In case you do not want to wrap the content in your <li>s with <span>s, you can also use :before like this:

      ul {
        list-style: none;
        }
      li {
        position: relative;
        padding-left: 15px;
        line-height: 16px;
      }
      li:before {
        content: '\2022';
        line-height: 16px; /*match the li line-height for vertical centered bullets*/
        position: absolute;
        left: 0;
      }
      li.huge:before {
        font-size: 30px;
      }
      
      li.small:before {
        font-size: 10px;
      }
      

      Adjust your font sizes on the :before to whatever you would like.

      <ul>
        <li class="huge">huge bullet</li>
        <li class="small">smaller bullet</li>
        <li class="huge">multi line item with custom<br/> sized bullet</li>
        <li>normal bullet</li>
      </ul>
      
      0 讨论(0)
    • 2020-12-15 04:02

      You can wrap the contents of the li in another element such as a span. Then, give the li a larger font-size, and set a normal font-size back on the span:

      http://jsfiddle.net/RZr2r/

      li {
          font-size: 36px;
      }
      li span {
          font-size: 18px;
      }
      <ul>
          <li><span>Item 1</span></li>
          <li><span>Item 2</span></li>
          <li><span>Item 3</span></li>
      </ul>
      
      0 讨论(0)
    提交回复
    热议问题