我想爲我的儀表板設計和簡單的css模板。喜歡有頂部顯示標誌和標題,菜單的左側部分,中心顯示基於菜單的信息,右側顯示一些信息,底部顯示一些聯繫信息。我喜歡頁面的左側/中間/右側垂直和水平可以擺放。滾動時,我需要標題始終顯示在瀏覽器上。css設計一個dashbard模板
有人可以幫我嗎?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Dashboard Layout</title>
<STYLE type="text/css">
#top {
height: 100px;
widht: auto;
border-bottom: 5px solid;
}
#left {
height: auto;
width: 350px;
border: 1px solid;
float: left;
overflow: scroll;
}
#content {
width: auto;
height: auto;
float: left;
overflow: scroll;
}
#right {
height: auto;
width: 350px;
float: right;
overflow: auto;
}
#bottom {
height: 50px;
width: auto;
}
</STYLE>
</head>
<body>
<div id="top">
<h3><b>Dashboard</b></h3>
</div>
<div id="middle">
<div id="left">
<h3><b>Menu</b></h3>
</div>
<div id="content">
<div id="div1" </div>
</div>
<div id="right">
<h3><b>Definitions</b></h3>
</div>
</div>
<div id="bottom">
<p>This dasboard prodides info about systems.</p>
</div>
</body>
</html>
您將需要提供一些證據,表明您實際嘗試嘗試自行創建,否則您將無法在本網站獲得任何幫助。如果您正在尋找某人爲您編寫所有代碼,請考慮僱用某人。 – Jrod 2012-08-07 16:41:47
我會馬上發佈我的代碼,謝謝@Jrod – user1471980 2012-08-07 17:06:02