Looking for help with a layout where there are two tables side by side, represented by the blue boxes. The goal is to be able to select a row in each table and then click the red link button below. The connecting lines between the boxes and the link buttons should have a dashed border. The height of the blue boxes will vary.
Check out the fiddle here to see what I have so far.
<div class="container cf">
<div class="link">
<div class="linkButton">
<input type="button" value="link" />
</div>
</div>
<div class="tab table1">Table left </div>
<div class="tab table2">Table right</div>
</div>
Struggling with centering the link button and concerned about the robustness of my HTML due to using negative positioning values. Any suggestions on improving the structure are appreciated. Keep in mind that I need to support IE7, which limits the use of pseudo elements like :before and :after.