Wed, 31 Dec 2014 06:55:50 +0100
Added tag UPSTREAM_283F7C6 for changeset ca08bd8f51b2
michael@0 | 1 | <html> |
michael@0 | 2 | <head> |
michael@0 | 3 | <title>default box sizing (border-collapse: separate, standards mode)</title> |
michael@0 | 4 | <style type="text/css"> |
michael@0 | 5 | |
michael@0 | 6 | body > div { float: left; clear: left; background: fuchsia; margin: 2px 0; } |
michael@0 | 7 | |
michael@0 | 8 | table { |
michael@0 | 9 | border-spacing: 5px 3px; |
michael@0 | 10 | padding: 2px 3px 4px 5px; |
michael@0 | 11 | border: medium solid blue; |
michael@0 | 12 | border-width: 2px 3px 4px 5px; |
michael@0 | 13 | } |
michael@0 | 14 | |
michael@0 | 15 | td { |
michael@0 | 16 | border: medium solid aqua; |
michael@0 | 17 | border-width: 2px 3px 4px 5px; |
michael@0 | 18 | padding: 5px 7px 9px 11px; |
michael@0 | 19 | } |
michael@0 | 20 | |
michael@0 | 21 | td > div { |
michael@0 | 22 | background: yellow; |
michael@0 | 23 | } |
michael@0 | 24 | |
michael@0 | 25 | </style> |
michael@0 | 26 | </head> |
michael@0 | 27 | <body> |
michael@0 | 28 | |
michael@0 | 29 | <div> |
michael@0 | 30 | <table width="200"> |
michael@0 | 31 | <tr> |
michael@0 | 32 | <td><div>x</div></td> |
michael@0 | 33 | </tr> |
michael@0 | 34 | </table> |
michael@0 | 35 | </div> |
michael@0 | 36 | |
michael@0 | 37 | <div> |
michael@0 | 38 | <table> |
michael@0 | 39 | <tr> |
michael@0 | 40 | <td width="200"><div>x</div></td> |
michael@0 | 41 | </tr> |
michael@0 | 42 | </table> |
michael@0 | 43 | </div> |
michael@0 | 44 | |
michael@0 | 45 | </body> |
michael@0 | 46 | </html> |