Myanmar Coder Guide

Course Outline from w3school.com

Saturday, April 24, 2021

CSS background-attachment

Background-attachment property ကနောက်ခံပုံကို scroll လုပ်သင့်လားမပြင်သင့်လားဆိုတာကိုသတ်မှတ်ပါတယ်။

Example

နောက်ခံပုံပါစာမျက်နှာအားကျန်စာမျက်နှာနှင့်အတူ scroll မလုပ်ရန်သတ်မှတ်ပါ

  1. body{
  2.     background-img: url("img_tree.png");
  3.     background-repeat: on-repeat;
  4.     background-position: right top;
  5.     background-attachment: fixed;
  6. }
Try it Yourself »

Example

နောက်ခံပုံပါစာမျက်နှာအားကျန်စာမျက်နှာနှင့်အတူ scroll လုပ်ရန်သတ်မှတ်ပါ

  1. body{
  2.     background-img: url("img_tree.png");
  3.     background-repeat: on-repeat;
  4.     background-position: right top;
  5.     background-attachment: scroll;
  6. }
Try it Yourself »

No comments:

Post a Comment