저는 Stackoverflow에서 새로 왔으며 이러한 문제에 대한 도움이 필요합니다.다른 div에 대한 이미지 높이
문제는 다음과 같습니다.이 점선 이미지 높이를 컨테이너의 100 %로 지정합니다.
HTML
<div id="test1">
</div>
<aside>
<?php
if (logged_in() === true) {
include 'includes/widgets/loggedin.php';
} else {
include 'includes/widgets/login.php';
}
include 'includes/widgets/user_count.php';
include 'includes/widgets/sponsors.php';
include 'includes/widgets/partners.php';
?>
</aside>
CSS
aside {
width:260px;
float:right;
background-image:url(../images/dashed.png);
background-repeat: repeat-y;
padding-left:15px;
}
#container, footer {
background:#fff;
width:1100px;
margin:0 auto;
padding:20px;
}
#test1 {
height:1000px;
}
이 사람이 나를 도울 수 있습니까?
을 당신은'국경 dashed' 속성은 CSS에있다 알아? – DaniP
우리는 귀하의 html에 대한 더 자세한 정보가 필요합니다. 분명히 '옆으로'는 '컨테이너'와 같은 높이가 아닙니다. – Diego
@ Danko 참으로 국경이 파선이지만 높이는 100 %가 아닙니다. 높이 : 자동; 그것은 이미지로만 작동하므로 시도했지만 여전히 나옵니다. –