OLD | NEW |
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html4
0/strict.dtd"> | 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html4
0/strict.dtd"> |
2 <html><head> | 2 <html><head> |
3 <title>Table Border Models</title> | 3 <title>Table Border Models</title> |
4 <style type="text/css"> | 4 <style type="text/css"> |
| 5 body { overflow: hidden; } |
5 TABLE { margin: 1em; width: auto; border: medium solid blue; } | 6 TABLE { margin: 1em; width: auto; border: medium solid blue; } |
6 TD { border: thin solid green; padding: 5px; } | 7 TD { border: thin solid green; padding: 5px; } |
7 TH { border: medium solid purple; padding: 5px; } | 8 TH { border: medium solid purple; padding: 5px; } |
8 TABLE.one, TABLE.two { border-spacing: 1em; } | 9 TABLE.one, TABLE.two { border-spacing: 1em; } |
9 TABLE.one { border-collapse: collapse; } | 10 TABLE.one { border-collapse: collapse; } |
10 TABLE.two { border-collapse: separate; } | 11 TABLE.two { border-collapse: separate; } |
11 TABLE.three { border-collapse: separate; border-spacing: 0 0.5em; } | 12 TABLE.three { border-collapse: separate; border-spacing: 0 0.5em; } |
12 TABLE.four { border-collapse: separate; border-spacing: 0.5em 0; } | 13 TABLE.four { border-collapse: separate; border-spacing: 0.5em 0; } |
13 TABLE.five { border-collapse: separate; } | 14 TABLE.five { border-collapse: separate; } |
14 TABLE.five, TABLE.five TD, TABLE.five TH, TABLE.five CAPTION { border: none; } | 15 TABLE.five, TABLE.five TD, TABLE.five TH, TABLE.five CAPTION { border: none; } |
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
223 </td> | 224 </td> |
224 <td> | 225 <td> |
225 This table should have a 1em margin around all edges. This margin | 226 This table should have a 1em margin around all edges. This margin |
226 is measured from the <em>outer edge</em> of its border. | 227 is measured from the <em>outer edge</em> of its border. |
227 </td> | 228 </td> |
228 </tr> | 229 </tr> |
229 </tbody> | 230 </tbody> |
230 </table> | 231 </table> |
231 </div> | 232 </div> |
232 </body></html> | 233 </body></html> |
OLD | NEW |