我對container-about div有問題。 它的高度是100%,因爲我想讓div佔據標題div後的整個寬度和高度。 問題是現在我不滾動顯示全文。html,身高100%
我們還希望能夠使用平板電腦和智能手機的滾動顯示文本。
感謝您的幫助。
<div class='header'>
<div class='header-container'>
</div>
</div>
<div class='container-wrapper'>
<div class='container-about'>
<div class='about-text'>
text comes here.....
........
</div>
</div>
</div>
鏈接:http://ttest11234.librax.net/index.html
CSS:
* {
margin: 0 auto;
padding: 0;
}
html, body {
height: 100%;
overflow: hidden;
}
body {
font-size: 12px;
line-height: 1.5;
background: #000;
font-weight: 400;
}
.header {
top: 0px;
left: 0px;
width: 100%;
height: 100px;
position: fixed;
background: gray;
opacity: 0.8;
}
.header-container {
width: auto;
height: 100px;
margin: 0 10% 0 10%;
text-align: center;
}
.container-wrapper {
width: 100%;
height: 100%;
}
.container-about {
margin: 100px auto;
padding-bottom: 2%;
width: 100%;
height: 100%;
background: #FFF;
position: relative;
}
.container-about h3 {
padding: 0 10% 5% 10%;
font-family: 'Verdana', sans-serif;
font-size: 12px;
line-height: 150%;
font-weight: 400;
}
請將其張貼在小提琴上。 – avrahamcool
您可以使用表格元素 – Shadow
表格只顯示錶格數據。對於所有其他需求,請使用div和CSS。在這裏,你需要在類'.container-about'上放置CSS屬性'overflow:auto'。 –