rotate-90-degrees-001.html (726B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS Test: Reference</title> 5 <link rel="author" title="Larry McLister" href="mailto:lmcliste@adobe.com"/> 6 <style type="text/css"> 7 #greenBottomDiv { 8 position: absolute; 9 background: green; 10 border-left: black; 11 border-bottom-color: transparent; 12 border-right-color: transparent; 13 border-top-color: transparent; 14 border-width: 5px; 15 border-style: solid; 16 height: 100px; 17 width: 100px; 18 } 19 20 </style> 21 </head> 22 <body> 23 <p>Test passes if there is a black line on the left of green box and no red.</p> 24 <div id="greenBottomDiv"></div> 25 </body> 26 </html>