1. 程式人生 > >實現下劃線比文字短

實現下劃線比文字短

第一種方法:

用after 偽元素:

偽元素只支援IE8以上胡瀏覽器

.head_line:after{
content:’’;
display:block;
width:30px;
border-bottom:2px solid #ff3700;
margin: 0 auto;
}

第二種方法:

html:
在這裡插入圖片描述

css:
.head_line{
height: 2px;
display:block;
width:30px;
background-color: #ff3700;
margin: 0 auto;
}