본문 바로가기
카테고리 없음

html background img 설정

by 준섭이 2023. 12. 28.
728x90

#### 해당 사이즈로 보이기

<style>
body {
  background-image: url('example.jpg');
}
</style>

 

 

#### 한개로 보이기

<style>
body {
  background-image: url('example.jpg');
  background-repeat: no-repeat;
}
</style>