I am implementing a search and on that search results come. BUT WHEN the organization name becomes big. The alignment completely changes. How can I able to fix the same.
<div class="col-sm-6 col-md-4 p0" v-for="post in data" v-if="data.indexOf(post) <= 6">
<div class="box-two proerty-item">
<div class="item-thumb">
<a href="property-1.html" ><img src="/static/assets/img/demo/property-1.jpg"></a>
</div>
<div class="item-entry overflow">
<h5><a v-bind:href="'/details/'+post.pid">{{post.bussinessName}}</a></h5>
<div class="dot-hr"></div>
<span class="pull-left"><b>City :</b> {{post.city}} </span>
<span class="proerty-price pull-right">{{post.contactNumber}}</span>
</div>
</div>
</div>
This is my html code.
If {{post.bussinessName}} is a bigname alignment changes completely as in figure, How can I able to correct it.