border-image-outset-001.htm (1754B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <title>CSS Test: The 'border-image-outset' property set to four number values</title> 5 <link rel="author" title="Microsoft" href="http://www.microsoft.com/" /> 6 <link rel="help" href="http://www.w3.org/TR/css3-background/#the-border-image-outset" /> 7 <meta name="flags" content="image" /> 8 <meta name="assert" content="This test checks that the four values of the 'border-image-outset' property specify the amount by which the border image area extends beyond the border box. They set the outsets on the top, right, bottom and left sides in that order. A 'number' represents a multiple of the corresponding border-width." /> 9 <style type="text/css"> 10 #test 11 { 12 background-color: blue; 13 border: 10px double red; 14 border-image-outset: 1 6 11 1; 15 border-image-slice: 10; 16 border-image-source: url("support/green_color.png"); 17 border-image-width: 1; 18 height: 90px; 19 margin: 70px; 20 width: 40px; 21 } 22 #reference 23 { 24 background-color: orange; 25 height: 100px; 26 margin: 100px 50px; 27 width: 50px; 28 } 29 </style> 30 </head> 31 <body> 32 <p>Test passes if orange rectangle touches green border by 2 sides and it's top left corner touches the bottom right corner of the blue rectangle.</p> 33 <div id="test"> 34 <div id="reference"></div> 35 </div> 36 </body> 37 </html>