Why do my list item bullets overlap floating elements

前端 未结 23 1208
半阙折子戏
半阙折子戏 2020-11-28 18:00

I have an (XHTML Strict) page where I float an image alongside regular paragraphs of text. All goes well, except when a list is used instead of paragraphs. The bullets of th

23条回答
  •  北海茫月
    2020-11-28 18:22

    Try the following on your UL tag. This should take care of the bullets overlaying your image and you don't have to mess up your left allignment caused by list-position: inside.

    overflow: hidden; 
    padding-left: 2em; 
    

提交回复
热议问题