What is the CSS equivalent for the style of this table?

Posted by user1451890 on Stack Overflow See other posts from Stack Overflow or by user1451890
Published on 2012-11-27T16:59:05Z Indexed on 2012/11/27 17:03 UTC
Read the original article Hit count: 137

Filed under:
|
|
|

I really would like to use the layout of this table, but how can I bring this up to CSS standards of its equivalent into HTML5?

<html>
<head></head>
<body>
<table border="1" bordercolor="#000000" style="background-color:#ffffff" width="100%" cellpadding="3" cellspacing="1">
    <tr>
        <td>Table Cell</td>
        <td>Table Cell</td>
        <td>Table Cell</td>
    </tr>
</table>
</body>
</html>

© Stack Overflow or respective owner

Related posts about html

Related posts about css