user1651888
user1651888

Reputation: 463

Alignment of "link" and "label" using bootstrap

I am using "href" and a "label" but alignment is not proper. They are in same line but "My Text" is little above "myImage".

<div class="col-md-6 bottom">
   <a href="~mydata"><img src="~/Images/myImage.png"/></a>
</div>
<div class="col-md-6 bottom">
   Html.Label("", "My Text")
</div>

Upvotes: 0

Views: 1361

Answers (1)

Jordumus
Jordumus

Reputation: 2783

You have to use the class .form-control-static. More information here: http://getbootstrap.com/css/#forms-controls-static

Upvotes: 1

Related Questions