I cannot find how to indicate at what point the line should break when the screen is not large enough. For example, I would like the text "Commune: CENON-SUR-VIENNE" to break after the colon. Is there any syntax that allows you to specify this manually and not leave Bootstrap CSS automatically?
I am including part of my HTML code below. I pointed out the meta tag well inside <head>:
<meta name="viewport" content="width=device-width, initial-scale=1.0">
Screenshot:

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