css - How to colspan and rowspan table in html? -


how can rowspan , colspan table in html number 10 (white color) in table in picture?

enter image description here

you can achieve making following change

for row 3 first td -> colspan 2 row 4 first td -> colspan 3 

in css,

for row 3 first td -> border-bottom:none; row 4 first td -> border-top:none; 

in html,

for row 3 first td -> text 10 row 4 first td -> empty 

a sample fiddle - http://jsfiddle.net/faj3zdge/


Comments