2015-01-02 47 views

回答

2

你可以使用:僞元素。

h1 span { 
 
    position: relative; 
 
    color: #F56B20; 
 
} 
 
h1 span:after { 
 
    position: absolute; 
 
    content: ''; 
 
    width: 15%; 
 
    height: 1px; 
 
    border-bottom: 2px solid #863C2F; 
 
    bottom: -2px; 
 
    left: 50%; 
 
    margin-left: -7.5%; 
 
}
<h1><span>Our Services</span></h1>

+0

廣泛的問題的良好答案 – jbutler483

+1

我會試試這個 –

+1

它的工作原理...謝謝 –

3

使用僞元素::after插入頭之後空白元素,風格它看起來像一個邊界:

#h_1{ 
 
    color:orange; 
 
} 
 
#h_1::after{ 
 
    content:""; 
 
    display:block; 
 
    position:absolute; 
 
    width:25px; 
 
    height:3px; 
 
    background-color:maroon; 
 
    margin-left:80px; 
 
}
<h1 id="h_1">Our Services</h1>

+2

廣泛的問題的良好答案 – jbutler483