Title with bottom border smaller than width

前端 未结 7 2114
终归单人心
终归单人心 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 15:47

    You could use a sort of 'fake' border by simply wrapping a div around it and making a border div after the title

    JSFiddle

    HTML

    My address

    CSS

    #border-wrapper{
        position:relative;
        display:inline-block;
    }
    #border{
        position: relative;
        width: 50%;
        height: 2px;
        background-color: blue;
        margin: 0 auto;
    }
    

提交回复
热议问题