Title with bottom border smaller than width

前端 未结 7 2084
终归单人心
终归单人心 2020-11-28 15:32

I need to create an underline effect with a bottom border that is smaller than the h2 title\'s width. Usually I don\'t upload images but I figu

相关标签:
7条回答
  • 2020-11-28 16:04

    Other approach :

    Box shadow with a negative spread radius :

    body{text-align:center;}
    h2{
      font-size:40px;
      color:#409FB3;
      display:inline-block;
      height:50px;
      box-shadow: 0 25px 0 -23px #5CC7A8;
    }
    <h2>Some title</h2>

    Note : you need to make sure that - spread-radius x2 < height otherwise the box-shadow will have 0 height and disapear.

    0 讨论(0)
提交回复
热议问题