transform-table-004.html (843B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS Test (Transforms): Transform on Table with caption-side: bottom</title> 5 <link rel="author" title="Aryeh Gregor" href="mailto:ayg@aryeh.name"> 6 <link rel="help" href="http://www.w3.org/TR/css-transforms-1/#transform-property"> 7 <meta name="assert" content='This is the same as transform-table-001.html, 8 except the caption has caption-side: bottom.'> 9 <link rel="match" href="transform-table-004-ref.html"> 10 <link rel="mismatch" href="transform-table-004-notref.html"> 11 <style> 12 table { 13 transform: translate(200px) rotate(180deg); 14 transform-origin: left; 15 } 16 caption { 17 caption-side: bottom; 18 } 19 </style> 20 </head> 21 <body> 22 <table> 23 <caption>there!</caption> 24 <tr><td>Hello</td></tr> 25 </table> 26 </body> 27 </html>