html add line break in string on screen size

Solutions on MaxInterview for html add line break in string on screen size by the best coders in the world

showing results for - "html add line break in string on screen size"
Roxane
15 Nov 2018
1<div class="container">
2<div class="tab-content">
3<div class="col-lg-5">
4  <div>
5  <h4>Commune : <span>CENON-SUR-VIENNE</span></h4>
6  </div>
7</div>
8</div>
9</div>
10
11<style>
12h4 span{
13display: inline-block;
14} 
15</style>