[CSS]배경이미지 고정

suyeon·2022년 8월 25일
1

CSS

목록 보기
6/6
post-thumbnail

background-attachment

  1. fixed
 <style type= "text/css">
  body{
	background-image : url('images\\mulan.gif');
	background-attachment : fixed;
  }
 </style>

  • 스크롤바를 내려도 그림은 고정이 되고 글씨만 내려간다.

  1. scroll(기본값)
 <style type= "text/css">
  body{
	background-image : url('images\\mulan.gif');
	background-attachment : scroll;
  }
 </style>

-스크롤바를 내리면 그림과 글씨가 같이 내려간다.

profile
📖개발블로그📖

0개의 댓글