background-position-104.xht (1481B)
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: Background-position using percentages with a nominal value and a plus sign, +50%</title> 5 <link rel="author" title="Microsoft" href="http://www.microsoft.com/" /> 6 <link rel="help" href="http://www.w3.org/TR/CSS21/colors.html#propdef-background-position" /> 7 <link rel="help" href="http://www.w3.org/TR/CSS21/colors.html#background-properties" /> 8 <meta name="flags" content="image" /> 9 <meta name="assert" content="The 'background-position' property correctly applies a nominal length value in percentages with a plus sign." /> 10 <style type="text/css"> 11 div 12 { 13 height: 96px; 14 } 15 #div1 16 { 17 border: 3px solid orange; 18 width: 116px; 19 } 20 div div 21 { 22 background-image: url("support/black20x20.png"); 23 background-position: +50%; 24 background-repeat: no-repeat; 25 width: 212px; /* 96px * 2 minus 20px */ 26 } 27 </style> 28 </head> 29 <body> 30 <p>Test passes if the black square below is vertically centered and on the right inner edge of the orange box.</p> 31 <div id="div1"> 32 <div></div> 33 </div> 34 </body> 35 </html>