답변:
당신은 이것을 의미합니까?
<style type="text/css">
.bgimg {
background-image: url('../images/divbg.png');
}
</style>
...
<div class="bgimg">
div with background
</div>
CSS의 background
속성 을 사용하여 그렇게 할 수 있습니다 . 몇 가지 방법이 있습니다.
HTML :
<div id="div-with-bg"></div>
CSS :
#div-with-bg
{
background: color url('path') others;
}
HTML :
<div class="div-with-bg"></div>
CSS :
.div-with-bg
{
background: color url('path') others;
}
HTML :
<div style="background: color url('path')"></div>
어디서 :
background
CSS 속성은 해당 구문에서 모든 background-xxx 속성의 연결입니다.
배경 : 배경색 배경 이미지 배경 반복 배경 첨부 배경 위치 ;
출처 : w3schools
처럼 사용 ..
<div style="background-image: url(../images/test-background.gif); height: 200px; width: 400px; border: 1px solid black;">Example of a DIV element with a background image:</div>
<div style="background-image: url(../images/test-background.gif); height: 200px; width: 400px; border: 1px solid black;"> </div>
id로 img src 속성을 추가 할 수 있습니다 :
<body>
<img id="backgroundimage" src="bgimage.jpg" border="0" alt="">
</body>
CSS 파일 (스트레치 배경)에서 :
#backgroundimage
{
height: auto;
left: 0;
margin: 0;
min-height: 100%;
min-width: 674px;
padding: 0;
position: fixed;
top: 0;
width: 100%;
z-index: -1;
}
<div id="imgg">Example to have Background Image</div>
스타일 태그에 아래 내용을 추가해야합니다.
.imgg(
background-image: url('C:\Users\ajai\Desktop\10.jpg');
)