2017-05-31 47 views
-2

我想在我的浮動圖像下方有一條簡單的分界線。從而<hr>可嵌套在樣式表中

我的樣式表讀取:

img.floatrightclear { 
    float: right; 
    clear: right; 
    margin-top: 10px; 
    margin-left: 20px; 
    margin-bottom: 20px; 
} 

能有色線被顯示的圖像的下方,在圖像的相同的寬度?它可以包含在圖像的CSS?

+0

您可以在css中使用


。看到這個例子:https://codepen.io/ibrahimjabbari/pen/ozinB – tech2017

+0

你可以使用'border'。 – Sirko

+1

添加填充底部和邊框底部以在某個距離處顯示圖像下方的邊框。 –

回答

0

由於Nawed汗說,只要使用的無邊框,底部填充底,像這樣:

img.floatrightclear { 
    float: right; 
    clear: right; 
    margin-top: 10px; 
    margin-left: 20px; 
    margin-bottom: 20px; 

    padding-bottom: 10px; /* the distance between bottom and line */ 
    border-bottom: 2px solid black; /* The line */ 
}