是否可以在鉻中爲br標籤添加邊距?我已經添加了mrgin屬性,但這不適用於Chrome。我也嘗試了線heigth。在Firefox中它的工作。這是我的代碼在鉻中的br的邊距
br{
display: block;
margin-bottom: 25px;
}
是否可以在鉻中爲br標籤添加邊距?我已經添加了mrgin屬性,但這不適用於Chrome。我也嘗試了線heigth。在Firefox中它的工作。這是我的代碼在鉻中的br的邊距
br{
display: block;
margin-bottom: 25px;
}
你可以這樣做,但我不知道這是否是一個很好的做法。
br {
content: "";
margin: 20em;
display: block;
font-size: 24%;
}
謝謝。它的工作:) –
地址:
content: '';
這將在Chrome正常工作。
您應該使用的line-height:
試'線height' – XYZ
http://stackoverflow.com/questions/1409649/how-to-change-the-height-of-a-br?scrlybrkr=b34b12d2 – Qwerty
可能重複的可能的複製[你能用css指定
嗎?](http://stackoverflow.com/questions/899252/can-you-target-br-with-css) –