我想創建一個只有一個網頁的網站,這是響應。 這個想法是向下滾動錨點。單頁響應式網站?
但是,我不知道如何才能讓所有的div填滿整個屏幕。
body {
width: 100%;
height: auto;
font-family: Source Sans Pro, Century Gothic;
background: url('images/bg.jpg');
background-size: cover;
background-repeat: no-repeat;
margin: 0;
}
ul {
list-style: none;
}
#intro1 {
font-family:'Press Start 2P', cursive;
font-size: 80px;
display: block;
text-align: center;
margin-bottom: auto;
margin-top: auto;
top: 50%;
height: 100%;
width: 100%;
position: absolute;
}
#intro2 { //This doesn't work. I've also tried to set top with pixels.
top:100%;
height:600px;
width: 100%;
position: absolute;
font-size: 80px;
display: block;
text-align: center;
margin-bottom: auto;
margin-top: auto;
top: 50%;
font-family: Source Sans Pro;
height: 100%;
width: 100%;
}
#products { //This works fine for some reason.
top: 800px;
width: 100%;
position: relative;
background: url('images/circuit.jpg');
font-family: Source Sans Pro;
font-size: 16px;
margin: 0;
text-align: center;
}
我怎麼能讓每個div填滿整個屏幕? 我不想使用任何jQuery插件,我幾乎瀏覽了幾乎所有的免費版本。
把你的相關的HTML結構這裏並儘量使測試在jsFiddle案件。 – Khamidulla
http://en.wikipedia.org/wiki/Single-page_application – ssilas777