幾乎花了我4個小時才能達到這一點。我真的無法記下三列的佈局。這是最好的,我可以得到到目前爲止,這是我的CSS:HTML5三頁佈局列
#header {text-align: center;}
#container {
width: 960px;
margin: 0 auto;
background-color: #FAFAFA;
color: #003300;
font-family: Arial, Helvetica, sans-serif;
}
#left {
float: left;
width: 150px;
}
#center { margin:0 210px 0 160px;
}
#right{
float: right;
width: 200px;
}
#footer { text-align: center;
clear: both;
}
#left a {text-decoration: none;
display: block;
text-align: center;
color: #FFFFCC;
font-weight:bold;
border: 3px outset #CCCCCC;
padding: 5px;}
figure{}
#left a:link { background-color: #003366; }
#left a:visited { background-color: #48751A; }
#left a:hover {border: 3px inset #333333; }
#left ul { list-style-type: none;
margin: 0;
padding-left: 0; }
這是網站爲我的項目:
http://younani.com/finalsite/finalindex.html
正如你可以看到左,中,右欄不對齊。此外,有沒有辦法根據頁面最大化或正常來適應網站?我是新建網站。同樣如您在關於我們的頁面中看到的那樣,導航觸及了中心列,是他們的反正呢?如果需要提供更多信息,請告訴我。謝謝。
你可能會使用(並希望看/從中學習)一個CSS框架(http://speckyboy.com/2011/11/17/15-responsive-css-frameworks-worth-considering /不會是一個糟糕的開始)。即使你不使用它們,也需要從開源測試框架中選擇很多。 – qooplmao