Space above text that is next to a image

前端 未结 4 523
轻奢々
轻奢々 2021-01-24 18:05

\"image\"As you can see. I have space above header 3, I want it to be inline with the image itself.

HTML



        
4条回答
  •  一生所求
    2021-01-24 18:46

    Just add a margin-top: 0px;

    .content h3 {font-size: 22px;  margin-top: 0px;}
    

    Header tags have margin applied by browsers, you are essentially resetting this style.

    You should consider using a CSS Reset in future.

    See this pen. http://codepen.io/JRKyte/pen/akcbF

提交回复
热议问题