How to make a bullet list align with text in css?

前端 未结 4 1917
心在旅途
心在旅途 2021-02-03 23:32

\"enter

The image demonstrates the problem. I want the bullet list to be aligned with the

4条回答
  •  花落未央
    2021-02-03 23:55

    Apply padding-left: 0 and change the list style position to inside:

    ul  {
      padding-left: 0;
    }
    ul li {
       list-style-position: inside;
    }
    

    Example link http://jsfiddle.net/vF5HF/

提交回复
热议问题