카테고리 없음
html background img 설정
준섭이
2023. 12. 28. 18:08
728x90
#### 해당 사이즈로 보이기
<style>
body {
background-image: url('example.jpg');
}
</style>
#### 한개로 보이기
<style>
body {
background-image: url('example.jpg');
background-repeat: no-repeat;
}
</style>