transform-transformable-table-cell.html (675B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS Test (Transforms): Transformability of Table-Cell</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 tests that transforms specified on a 8 table-cell work as expected.'> 9 <link rel="match" href="transform-transformable-table-cell-ref.html"> 10 <style> 11 body { 12 overflow: hidden; 13 } 14 div { 15 display: table-cell; 16 transform: translate(50px, 50px); 17 } 18 </style> 19 </head> 20 <body> 21 <div>Some text</div> 22 </body> 23 </html>