3

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;    
}

3 Answers3

1

add:

content: '';

This will work in chrome as well.

tech2017
  • 1,806
  • 1
  • 13
  • 15
1

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

br {
  content: "";
  margin: 20em;
  display: block;
  font-size: 24%;
}
EmmCall
  • 168
  • 1
  • 1
  • 13
0

You should use line-height:

br {
  line-height: 40px;
}
<p>dkajkjkdjkdjkd<br>dklsald</p>
Arjan Knol
  • 942
  • 5
  • 20