Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Margin for br in chrome

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;    
}
like image 893
Subin George Avatar asked Feb 28 '26 05:02

Subin George


1 Answers

You can do this, but I'm not sure if it's a good practice.

br {
  content: "";
  margin: 20em;
  display: block;
  font-size: 24%;
}
like image 83
EmmCall Avatar answered Mar 02 '26 17:03

EmmCall



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!