Reputation: 463
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
Reputation: 2783
You have to use the class .form-control-static
. More information here:
http://getbootstrap.com/css/#forms-controls-static
Upvotes: 1