remove space between paragraph and unordered list

前端 未结 8 2210
情歌与酒
情歌与酒 2021-01-01 10:17

Text

  • One

Text 2

How do i remove the vertical space between par

8条回答
  •  没有蜡笔的小新
    2021-01-01 11:04

    You can use CSS selectors in a way similar to the following:

    p + ul {
        margin-top: -10px;
    }
    

    This could be helpful because p + ul means select any

      element after a

      element.

      You'll have to adapt this to how much padding or margin you have on your

      tags generally.

      Original answer to original question:

      p, ul {
          padding: 0;
          margin: 0;
      }
      

      That will take any EXTRA white space away.

      p, ul {
          display: inline;
      }
      

      That will make all the elements inline instead of blocks. (So, for instance, the

      won't cause a line break before and after it.)

提交回复
热议问题