Title with bottom border smaller than width

前端 未结 7 2098
终归单人心
终归单人心 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:00

    h2 ::after {
       background: #f1991b none repeat scroll 0 0;
       content: "";
       display: block;
       height: 2px;
       margin-top: 15px;
       width: 50px;
    

    }

提交回复
热议问题