transform-inline-001.html (1049B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS Test (Transforms): Transformed Inline</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='The definition of "transformable element" 8 includes atomic inline-level elements, such as images, but not regular 9 inline-level elements, such as spans. The 'transform' property 10 only applies to transformable elements, so it should have no effect on a 11 span.'> 12 <link rel="match" href="transform-inline-ref.html"> 13 <link rel="mismatch" href="transform-inline-notref.html"> 14 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" /> 15 <style> 16 body { 17 font: 25px/1 Ahem; 18 } 19 span, p + p { 20 transform: rotate(180deg); 21 } 22 </style> 23 </head> 24 <body> 25 <p>This is some <span>text<br>that is</span> not transformed</p> 26 <p>This is some text that is transformed</p> 27 </body> 28 </html>