Margin for br in chrome

Is it possible to add margin for the br label in chrome? I added the mrgin property, but that doesn't work in chrome. I tried it too. It works in firefox. This was my code

br{
    display: block;
    margin-bottom: 25px;    
}

      

+3


source to share


3 answers


You can do this, but I'm not sure if this is good practice.



br {
  content: "";
  margin: 20em;
  display: block;
  font-size: 24%;
}

      

0


source


add:

content: '';

      



This will work in chrome too.

+1


source


You have to use the line height:

br {
  line-height: 40px;
}
      

<p>dkajkjkdjkdjkd<br>dklsald</p>
      

Run codeHide result


0


source







All Articles