Notice
Recent Posts
Recent Comments
«   2024/12   »
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31
Archives
Today
In Total
관리 메뉴

A Joyful AI Research Journey🌳😊

CSS: 모바일로 봤을 때 배경 화면을 하단에 고정하기 본문

💻Bootcamp Self-Study Revision✨/HTML5, CSS, Bootstrap, JSP

CSS: 모바일로 봤을 때 배경 화면을 하단에 고정하기

yjyuwisely 2023. 5. 17. 16:09

폰으로 봤을 때 배경화면을 반복없이 하나만  하단에 고정할 수 있다.

/* 배경 화면 반응형 변경 */
@media only screen and (max-width: 400px) {
  .BgImage {
    background-position: 70% bottom;
    background-size: auto 40%; 
    background-repeat: no-repeat;
  }
}

결과)

728x90
반응형
Comments