html 백그라운드 질문입니다.
본문
제소스는 아래와 같습니다.
<style>
#center-banner {
width:100%;
background-image:url(img/banner-center.jpg);
background-repeat:repeat-x;
background-position:top center;
background-size:1300px 100%;
clear:both;
}
#center-banner .inner {
width:100%;
max-width:1300px;
margin:0 auto;
}
#center-banner .inner img {
width:100%;
max-width:1300px;
}
</style>
<div id="center-banner">
<div class="inner">
<a href="#"><img src="img/banner-center.jpg" alt="" /></a>
</div>
</div>
답변 3
margin-top:20px
또는
position:relative;top:20px
이건 해보셨나요?
margin-top : 20px;
margin-top:20px 이거요!
답변을 작성하시기 전에 로그인 해주세요.