Clip Property Of CSS

Clip Property Of CSS

 
If we want to see the particular part of the Image, we use the Clip Property. In this property, We specify the particular dimensions which we want to visible.
  1. <html>  
  2.   
  3.    <head>  
  4.       <style type="text/css">  
  5.       img {  
  6.          position: absolute;  
  7.          clip: rect(0px, 40px, 100px, 0px);  
  8.       }  
  9.       </style>  
  10.    </head>  
  11.   
  12.    <body>  
  13.       <img src="123.jpg" height="40" width="50" />  
  14.    </body>  
  15.   
  16. </html>