I\'d like to set width on the td
in tbody
which is underneath thead
that has colspan=\"2\"
with an hard defined column wi
just change your css that is so confusing for me. change it to follow
.sample {width: 100%;}
.sample td:nth-child(1) {width:30%;}
.sample td:nth-child(2) {width:70%;}
of you wish that table looks good then you can give border so that u have clear idea about it.
..