我試圖建立一個網站,但即時將位置屬性應用時,它會感到困惑.. 1.-我想創建一個導航欄在頂部使用20%的網站頁面和寬度:100%和固定位置 2.-在導航欄下方有圖片滑塊,其中一些圖片的寬度爲100%,高度爲網頁的60%。 3.-下應該來的寬度100%和高度20%的頁腳,但我希望你可以滾動一點點。如何使用定位屬性網站
所以我tryed像這樣..建議,將真正apreciated ..即時通訊限定%的寬度和高度,因爲我想調整的網頁瀏覽器是否調整窗口大小
的感謝!
<head>
<style>
.body {
margin: 0 0 0 0;
.navigation {
background-color: lightyellow;
width:100%;
height:20%;
position:fixed;
}
.slider{
position: absolute;
top:20%
height:60%;
width:100%
background-color: lightgreen;
}
.footer{
position:relative;
top:80%;
color:lightblue;
height:20%;
width:100%
}
</style>
</head>
<body>
<div class="navigation">
</div>
<div class="slider">
</div>
<div class="footer">
</div>
</body>
你能提供一個小提琴的鏈接,讓這個更清楚一點嗎? –