I was able to create a table layout like this:
fixed - dynamic(50%) - dynamic(50%) - fixed
http://jsfiddle.net/ihtus/ksucU/
Now, I'm wondering how to achieve this layout instead: fixed - dynamic(30%) - dynamic(70%) - fixed
This is the CSS code I currently have:
table {
width:100%;
border-collapse:collapse;
table-layout:fixed;
}
td {
border: 1px solid #333;
}