I would like to give automatically the same height for #div1 and #div2 whatever my logo size is. Is there a specific Bootstrap3 class to do the job ? If not which is the best css rules to apply ?
https://jsfiddle.net/bzq9bhop/4/
<div class="masthead">
<!-- Logo + Titre du site -->
<div class="row">
<div id="div1" class="col-xs-6" style="border:solid 1px;"><img src="http://drawception.com/pub/panels/2012/12-28/MnbfrYALQj-2.png" width="250" height="150" /></div>
<div id="div2" class="col-xs-6" style="border:solid 1px;"><h1>My website title</h1></div>
</div>
Edit: Finally I used this solution. http://www.bootply.com/wr4u8YOFpj
Simple and elegant with only 1 bootstrap class list-inline
Which in my code gives:
<div class="row">
<ul class="list-inline">
<li><img src="//placehold.it/150x50"></li>
<li><h1>My text</h1></li>
</ul>
</div>