1
這個想法是讓橫幅和導航欄卡在瀏覽器窗口的頂部,我不想滾動,並且下面的內容可以滾動。 contentleft和contentright的兩個部分我想要有相同的高度,即使內容不是很大。滾動問題滾動不起作用
@charset "utf-8";
body {
margin: 0px;
padding: 0px;
}
.banner {
width: 100%;
height: 125px;
background-color: #034569;
position: relative;
top: 0px;
}
.nav {
width: 100%;
height: 50px;
background-color: #235B79;
}
.contentwrapper {
width: 100%;
background-color: #aaaaaa;
position: fixed;
top: 175px;
overflow-y: scroll;
}
#contentleft {
width: 25%;
height: auto;
background-color: #034569;
float: left;
}
#contentright {
width: 75%;
height: auto;
background-color: #ffffff;
float: right;
}