2017-02-06 9 views

答えて

1

迅速かつ汚いソリューション:

h1 { 
 
     position: relative; 
 
     text-align: center; 
 
    } 
 
    h1:before { 
 
     content: " "; 
 
     position: absolute; 
 
     height: 6px; 
 
     width: 40%; 
 
     border-top: 1px solid black; 
 
     border-bottom: 1px solid black; 
 
     left: 0; 
 
     top: 40%; 
 
    } 
 
    h1:after { 
 
     content: " "; 
 
     position: absolute; 
 
     height: 6px; 
 
     width: 40%; 
 
     border-top: 1px solid black; 
 
     border-bottom: 1px solid black; 
 
     right: 0; 
 
     top: 40%; 
 
    }
<h1>Title</h1>

+1

私の悪いです!コーディングの際に思考の訓練を完全に失った。主な回答が更新されました - %幅を持つcalcを使用して、反応が必要な場合は重なりがないようにすることもできます。 – mikeg542

関連する問題