clipping-010.xht (958B)
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: CSS clipping test</title> 5 <link rel="author" title="David Hyatt" href="mailto:hyatt@netscape.com"/> 6 <link rel="help" href="http://www.w3.org/TR/CSS21/visufx.html#clipping" /> 7 <style type="text/css"> 8 .green { 9 width: 100px; 10 height: 100px; 11 background-color: green; 12 } 13 14 .red { 15 width: 100px; 16 height: 100px; 17 margin-top: 100px; 18 margin-left: 100px; 19 background-color: red; 20 } 21 22 .clip { 23 clip: rect(0px 100px 100px 0px); 24 } 25 26 .positioned { 27 position: fixed; 28 } 29 </style> 30 </head> 31 <body> 32 <p>Test passes if there is <strong>a green square</strong> and <strong>no red</strong>.</p> 33 34 <!-- This test is checking to make sure clip is applying to all descendants. --> 35 36 <div class="clip green positioned"> 37 <div class="red"></div> 38 <div class="red positioned"></div> 39 </div> 40 </body> 41 </html>