Is it possible to add margin for br tag in chrome? I have added mrgin property but that is not working in chrome. I had tried line heigth also. In firefox its working. This was my code
br{
display: block;
margin-bottom: 25px;
}
Is it possible to add margin for br tag in chrome? I have added mrgin property but that is not working in chrome. I had tried line heigth also. In firefox its working. This was my code
br{
display: block;
margin-bottom: 25px;
}
You can do this, but I'm not sure if it's a good practice.
br {
content: "";
margin: 20em;
display: block;
font-size: 24%;
}
You should use line-height:
br {
line-height: 40px;
}
<p>dkajkjkdjkdjkd<br>dklsald</p>
with css?](http://stackoverflow.com/questions/899252/can-you-target-br-with-css) – Hidden Hobbes May 17 '17 at 12:52