I have a page with 2 columns. Left column is a picture.
<div class="col-md-3">
<br>
<img src="http://placehold.it/350X350" class="img-responsive">
</div>
<div class="col-md-3">
<br>Lorem ipsum dolor sit amet..
</div>
I want to situate table behind the picture and I need to make it visible only when someone places a mouse over a table's area. At default I want to place image and to place table (see below) on hover:
<div class="col-md-3">
<br>
<table class="table">
<caption>Basic Table Layout</caption>
<thead>
<tr>
<th>Name</th>
<th>City</th>
</tr>
</thead>
<tbody>
<tr>
<td>Tanmay</td>
<td>Bangalore</td>
</tr>
<tr>
<td>Sachin</td>
<td>Mumbai</td>
</tr>
</tbody>
</table>
</div>
<div class="col-md-3">
<br>Lorem ipsum dolor sit amet..</div>
So, on hover: http://www.bootply.com/FmxIhVK0Pq by default: http://www.bootply.com/jS76schLTB