কম্পিউটার

পটভূমিতে একটি চিত্রের স্ক্রলিং নিয়ন্ত্রণ করতে CSS-এ কোন বৈশিষ্ট্য ব্যবহার করা হয়?


পটভূমিতে একটি চিত্রের স্ক্রলিং সেট করতে, ব্যাকগ্রাউন্ড-অ্যাটাচমেন্ট ব্যবহার করুন সম্পত্তি।

উদাহরণ

ব্যাকগ্রাউন্ড-অ্যাটাচমেন্ট এর সাথে কিভাবে কাজ করবেন তা শিখতে আপনি নিম্নলিখিত কোডটি চালানোর চেষ্টা করতে পারেন সম্পত্তি:

<!DOCTYPE html>
<html>
   <head>
      <style>
         body {
            background-image: url('/css/images/css.jpg');
            background-repeat: no-repeat;
            background-attachment: fixed;
            background-attachment:scroll;
         }.
      </style>
   </head>
   <body>
      <p>The background-image is fixed. Try to scroll down the page.</p>
      <p>The background-image is fixed. Try to scroll down the page.</p>
      <p>The background-image is fixed. Try to scroll down the page.</p>
      <p>The background-image is fixed. Try to scroll down the page.</p>
      <p>The background-image is fixed. Try to scroll down the page.</p>
      <p>The background-image is fixed. Try to scroll down the page.</p>
      <p>The background-image is fixed. Try to scroll down the page.</p>
      <p>The background-image is fixed. Try to scroll down the page.</p>
      <p>The background-image is fixed. Try to scroll down the page.</p>
   </body>
</html>

  1. অ্যানিমেশনের গতি বক্ররেখা সেট করতে কোন CSS প্রপার্টি ব্যবহার করতে হবে?

  2. CSS সহ ব্যাকগ্রাউন্ড ইমেজ হিসাবে একটি রেডিয়াল গ্রেডিয়েন্ট সেট করুন

  3. CSS-এ ব্যাকগ্রাউন্ড শর্টহ্যান্ড প্রপার্টি

  4. CSS ব্যবহার করে ব্যাকগ্রাউন্ড ইমেজ সেট করা