CSS - apply padding to inline element across two lines

前端 未结 10 951
梦如初夏
梦如初夏 2020-12-29 11:29

I have to create a style to apply a background color and padding to a header element, resulting the following intended appearance (Photoshop mock-up):

My CSS

10条回答
  •  庸人自扰
    2020-12-29 12:14

    EDIT: nvm, didn't notice the white line; wouldn't giving & nbsp ; instead of regular spaces help?

    give it an inline-block display, be sure to make it display:inline for ie7

    regular

    h1 { display:inline-block }
    

    ie7 only

    h1 { display:inline}
    

提交回复
热议问题