我身高有100%的問題。身高在鍍鉻側欄中的100%
問題是我有一個項目列表應該與側面圖像分佈在相同的高度。當我使用固定高度時,它正常工作,但是當我使用百分比時,它不起作用。
問題是,該網站是響應式的,我不能設置一個固定的高度,因爲圖像不會被修復。
的代碼如下
<!DOCTYPE html>
<html>
<head>
<title>teste flex box</title>
<style>
html,body {
min-height: 100% !important;
height: 100%;
}
body { margin: 0 }
* { box-sizing: border-box }
.container {
width: 600px;
margin: auto;
}
.row {
clear: both;
margin: 0 -15px;
overflow: auto;
}
.lateral, ul {
width: 50%;
float: left;
padding: 0 15px;
}
img {
width: 100%
}
ul {
list-style: none;
margin: 0;
display: flex;
flex-direction: column;
justify-content: space-between;
height: 356px; /* works */
height: 100%; /* not working */
}
ul li {
height: 50px;
background: darkred;
}
</style>
</head>
<body>
<div class='container'>
<div class='row'>
<div class='lateral'><img src='https://placeholdit.imgix.net/~text?txtsize=33&txt=285%C3%97356&w=285&h=356'></div>
<ul>
<li>item 1</li>
<li>item 2</li>
<li>item 3</li>
<li>item 4</li>
<li>item 5</li>
</ul>
</div>
</div>
</body>
</html>
任何人都知道發生了什麼事?謝謝。
已經嘗試設置最小高度:356px ..? – CodeRomeos
是的,但我無法指定像素大小,因爲它可能更小。它必須獲得高度,無論圖像的大小=/ – jairhumberto