我遇到了顯示div的問題。由於某些原因,它不顯示內部div。絕對高度爲100%的位置
父div的位置是相對的,因爲子div是絕對的。
這裏是演示http://jsfiddle.net/squidraj/6R3Hr/6/
HTML代碼:
<div class="page-center">
<div class="question_slide inidfeedback">Test</div>
</div>
CSS代碼:
.question_slide {
background: #000000;
height: 569px;
width:100%
}
.question_slide {
overflow: hidden;
position: absolute;
top: 0;
width: 100%;
}
.page-center {
margin: 0 auto;
max-width: 1100px;
overflow: hidden;
position: relative;
text-align: center;
width: 100%;
}
什麼是使用'位置的點:在頁面中心relative'? –
否則溢出隱藏不起作用。 –