html5 - Image link to page -
html5 - Image link to page -
i have logo in header of website , want logo direct home page when clicked. in code, anchor surrounding <img>
tag, on website entire div clickable. how can create when hover on image clickable, not entire div
.
<div class="row"> <div class="col-sm-12"> <a href="@url.action("index", "home")"> <img class="img-responsive" src="~/content/img/stars.jpg" alt="stars" /> </a> </div> </div>
i found answer. needed add together style display: inline-block
<img>
tag.
html5 css3 asp.net-mvc-4
Comments
Post a Comment