Remove padding beneath heading tag

前端 未结 5 1351
时光说笑
时光说笑 2021-01-07 19:22

Currently I have a list that has an H3 heading above it (which I can\'t really remove easily, it\'s auto generated by a cms) and looks something like this

He         


        
5条回答
  •  青春惊慌失措
    2021-01-07 19:50

    If the pipes are actual text, you're not going to be able to get rid of them without using some form of JavaScript.

    If the pipes are a background image for the H3, you can use this to get rid of them:

    h3
    {
      background-image: none;
    }
    

提交回复
热议问题