html - How can I code cellspacing=0 so it is valid HTML5? -
this question has answer here:
i have html looking this:
<table class="table" style="clear: both;" width="100%" cellspacing="0">
my ide telling me width , cellspacing not valid html5.
is there way can code valid?
well, use border-collapse: collapse;
css rule (which has same effect: no space between table cells). note may not work in older browsers ie 5 or 6, if need support them out of luck.
<table class="table" style="clear: both; border-collapse: collapse; width: 100%;">