Floated image to left of a ul is ignoring margin/padding

后端 未结 6 692
暗喜
暗喜 2021-02-07 20:50

I have a paragraph followed by an unordered list, with several list items. I also have an image floated to the left of that. The problem I am having is that the list item margin

6条回答
  •  一整个雨季
    2021-02-07 21:17

    Another option would be to shift the list to the right with relative positioning:

    img+p+ul {
        position: relative;
        left: 1em;
        top: 0;
    }
    

提交回复
热议问题