| 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" |
|---|
| 2 | "http://www.w3.org/TR/html4/loose.dtd"> |
|---|
| 3 | <html> |
|---|
| 4 | <head> |
|---|
| 5 | <title></title> |
|---|
| 6 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" > |
|---|
| 7 | <style type="text/css"> |
|---|
| 8 | |
|---|
| 9 | table[border="0"] |
|---|
| 10 | { |
|---|
| 11 | border:1px dotted #d3d3d3 ; |
|---|
| 12 | } |
|---|
| 13 | |
|---|
| 14 | table:not([border]) |
|---|
| 15 | { |
|---|
| 16 | border:1px dotted #d3d3d3 ; |
|---|
| 17 | } |
|---|
| 18 | |
|---|
| 19 | </style> |
|---|
| 20 | </head> |
|---|
| 21 | <body> |
|---|
| 22 | <table border="1"> |
|---|
| 23 | <caption>border=1</caption> |
|---|
| 24 | <tr> |
|---|
| 25 | <td>Content</td> |
|---|
| 26 | <td>Content</td> |
|---|
| 27 | </tr> |
|---|
| 28 | </table> |
|---|
| 29 | |
|---|
| 30 | <table border="0"> |
|---|
| 31 | <caption>border=0</caption> |
|---|
| 32 | <tr> |
|---|
| 33 | <td>Content</td> |
|---|
| 34 | <td>Content</td> |
|---|
| 35 | </tr> |
|---|
| 36 | </table> |
|---|
| 37 | |
|---|
| 38 | <table> |
|---|
| 39 | <caption>no border</caption> |
|---|
| 40 | <tr> |
|---|
| 41 | <td>Content</td> |
|---|
| 42 | <td>Content</td> |
|---|
| 43 | </tr> |
|---|
| 44 | </table> |
|---|
| 45 | |
|---|
| 46 | </body> |
|---|
| 47 | </html> |
|---|