I am starting to learn Bootstrap, I could not understand this behaviour.
Text of a .col
element inside a .row
is overflowing to enter next col
why is it happening and What can i do to wrap the text up.
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" />
<h1>Heading</h1>
<div class="row">
<div class="col-md-6">
HelloHelloHelloHelloHelloHelloHelloHelloHelloHelloHelloHelloHelloHelHelloHelloHelloHelloHelloHelloHelloHelloHelloHelloHelloHelHelloHelloHelloHelloHelloHelloHelloHelloHelloHelloHelloHel
</div>
<div class="col-md-6">
man
</div>
</div>