CSS
right aligned next to text

前端 未结 2 442
梦如初夏
梦如初夏 2020-12-06 07:55

I need a h2 that has a heavy stroke to the right of it. Like so:

2条回答
  •  青春惊慌失措
    2020-12-06 08:23

    Here you go with a fully responsive solution.

    WORKING DEMO

    The HTML:

    Who we are

     

    The CSS:

    .red{
    background:#ff0000;
    position:relative;
    margin-top:-17px;
    height:5px;
    z-index:-1;
    }
    
    .title{
    background:#ffffff;
    display:inline;
    padding-right:20px;
    }
    

    Hope this helps.

    PS: You can change the margin/padding accordingly to match your needs as well as media query requirements.

提交回复
热议问题