Title with lines filling remaining space on both sides

后端 未结 5 628
刺人心
刺人心 2020-12-06 18:19

I\'ve been asked to create this title, purely with css, Is it even possible?

\"Title

5条回答
  •  暖寄归人
    2020-12-06 19:00

    If you are not too fussed about absolute positioning, you can do

        h2 {
        font-size:42px;
        line-height:48px;
        width:100%;
        overflow: hidden;
        &:before {
            content:'';
            position:relative;
            padding-left:50px;
            padding-right:10px;
            margin-right:10px;
            margin-bottom:10px;
            border-top:1px solid #000;
            border-bottom:1px solid #000;
            height:3px;
            display:inline-block;
        }
        &:after {
            content:'';
            margin-left:10px;
            width:50%;
            height:3px;
            position:absolute;
            border-top:1px solid #000;
            border-bottom:1px solid #000;
            top:60px;
            }
    }
    

    will need tweaking but in jsfiddle this gets you what you need

提交回复
热议问题