Wonder if anyone can help me out with what I assume will be some javascript/jquery help.
I've got two tables, they sit side by side. The left table will have large amounts of data in it, and the right table just buttons to view/edit the data. The aim is that the right hand table will be viewable to users no matter what size screen they're on. Issue is that the address field stretches out the table rows on the left table.
Can something be done so that the rows in both tables have an equal height?
Heres an example http://jsfiddle.net/87GrY/
& heres the css I'm using
.left-table {
max-width:90%;
overflow:auto;
float:left;
}
.right-table {
float:left;
width:10%;
}
td {
border:1px solid;
}
Some addresses are longer than others so the row heights need to be dynamic, unfortunately i can't just declare them with css. Any help would be appreciated!