배경이미지가 안떠요
본문
http://www.limeweb.net/re/html/sub0104.html
서브페이지 이미지 들어갈 부분에 이미지가 안뜹니다.
css는
#subimg{width:100%;height:200px;background-image:url('/re/img/subimg.jpg')no-repeat;;margin:0 auto;}
이렇구요
html은
<div id="subimg">
</div>
이렇게 했습니다.
뭐가 잘못된건가요>?
답변 2
css에 문제는 없는듯 하고
전반적으로 css충돌이 엄청 심하네요 페이지내에서
크롬 개발자로 확인해보시면 해당 백그라운드 부분에서 충돌이 있습니다.
확인해보시는게 좋을거 같네요
#subimg{width:100%;height:200px;background-image:url('/re/img/subimg.jpg')no-repeat;;margin:0 auto;}
=>
#subimg{width:100%;height:200px;background-image:url('/re/img/subimg.jpg');background-repeat:no-repeat;;margin:0 auto;}
답변을 작성하시기 전에 로그인 해주세요.