I am currently working on a project using asp.net, and within my HTML markup I have the following code:
<div class="col-md-4">
<div class="col-md-6">
<a href="#">1</a>
</div>
<div class="col-md-6">
<a href="#">2</a>
</div>
<div class="col-md-12 text-center">
<a href="#">3</a>
</div>
</div>
Although link 3 is functioning correctly, links 1 and 2 do not seem to be clickable.
Upon altering
<div class="col-md-12 text-center">
<a href="#">3</a>
</div>
to
<div class="col-md-11 text-center">
<a href="#">3</a>
</div>
or any other modifications, all links on the page function properly.
I have tested the code in a fiddle where it works without issues, but when implemented in my development environment, the links fail to work. The browsers (Opera, IE, Firefox) show no errors, yet the links remain unresponsive as if they were plain text. Any assistance with this issue would be greatly appreciated.