html - How to make TD behaving like TR(row) with CSS? -
i have component create dynamically html table. according need, need show td tags line line block element not column. how using css ?
thanks in advance,
you can applying display: block tds:
that works in modern browsers except ie9..
using float: left; width: 100% instead makes work in ie8/9:
nothing make work in ie7.
Comments
Post a Comment