পজিশন করা উপাদানের কোন অংশটি দৃশ্যমান তা ফেরাতে, ক্লিপ ব্যবহার করুন জাভাস্ক্রিপ্টে সম্পত্তি।
উদাহরণ
কিভাবে একটি ছবি ক্লিপ করতে হয় তা শিখতে আপনি নিম্নলিখিত কোডটি চালানোর চেষ্টা করতে পারেন −
<!DOCTYPE html> <html> <head> <style> img { position: absolute; top: 100px; } </style> </head> <body> <button type="button" onclick="display()">Clip</button><br> <img id="newImg" src="https://www.tutorialspoint.com/videotutorials/images/tutor_connect_home.jpg" width="170" height="150"> <script> function display() { document.getElementById("newImg").style.clip = "rect(10px 90px 90px 10px)"; } </script> </body> </html>