Answers for "reduce line break size html"

0

how to reduce br space in html

br {
            display: block; /* makes it have a width */
            content: ""; /* clears default height */
            margin-top: 0; /* change this to whatever height you want it */
}
Posted by: Guest on November-24-2021
0

html add line break in string on screen size

<div class="container">
<div class="tab-content">
<div class="col-lg-5">
  <div>
  <h4>Commune : <span>CENON-SUR-VIENNE</span></h4>
  </div>
</div>
</div>
</div>

<style>
h4 span{
display: inline-block;
} 
</style>
Posted by: Guest on June-01-2020

Browse Popular Code Answers by Language