Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Example of CSS clip property</title> <style> img { position: absolute; clip: rect(50px,250px,200px,0); } </style> </head> <body> <p><img src="/examples/images/sky.jpg" width="500" height="300" alt="Sky"></p> </body> </html>