Created
November 26, 2014 16:02
-
-
Save basselin/11a79ae6a476c1264b1c to your computer and use it in GitHub Desktop.
<table> & border:1px
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"/> | |
| <title>table & border:1px</title> | |
| <style type="text/css"> | |
| table { | |
| border-collapse: collapse; | |
| border-spacing: 0px; /* optional */ | |
| font: 1em sans-serif; | |
| margin: 0px auto; | |
| } | |
| th, td { | |
| border: 1px solid #ccc; | |
| width: 100px; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <table> | |
| <tr> | |
| <th>1</th> | |
| <th>2</th> | |
| <th>3</th> | |
| </tr> | |
| <tr> | |
| <td>11</td> | |
| <td>12</td> | |
| <td>13</td> | |
| </tr> | |
| <tr> | |
| <td>21</td> | |
| <td>22</td> | |
| <td>23</td> | |
| </tr> | |
| </table> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment