border-radius-greater-than-width.html (767B)
1 <!DOCTYPE html> 2 <head> 3 <title>CSS Test: Property of 'border-[*]-radius'.</title> 4 <link rel="author" title="Lin Peng" href="mailto:penglin220@gmail.com"> 5 <link rel="help" href="http://www.w3.org/TR/css3-background/#border-radius" /> 6 <link rel="match" href="reference/border-radius-greater-than-width-ref.html"> 7 <meta name="assert" content="Border should also render normally when 'border-[*]-radius' are greater than width or height." /> 8 <style type="text/css"> 9 div 10 { 11 width: 9px; 12 height: 100px; 13 border-top: 100px solid lightgreen; 14 border-left: 100px solid black; 15 border-top-right-radius: 10px; 16 border-bottom-left-radius: 10px; 17 } 18 </style> 19 </head> 20 <body> 21 <div></div> 22 </body>