ຫຼັກສູດ CSS ບໍລິການສະເພາະ
- Previous Page ຫຼັກສູດ CSS ບໍລິການລວມ
- Next Page ຫຼັກສູດ CSS ບໍລິການການຍົກສະເໝີບໍລິການຕາຍ
CSS background-attachment
background-attachment
The attribute specifies whether the background image should scroll or be fixed (it will not scroll with the rest of the page):
Example
Specify the background image should be fixed:
body { background-image: url("tree.png"); background-repeat: no-repeat; background-position: right top; background-attachment: fixed; }
Example
Specify the background image should scroll with the rest of the page:
body { background-image: url("tree.png"); background-repeat: no-repeat; background-position: right top; background-attachment: scroll; }
- Previous Page ຫຼັກສູດ CSS ບໍລິການລວມ
- Next Page ຫຼັກສູດ CSS ບໍລິການການຍົກສະເໝີບໍລິການຕາຍ