0

ダッシュボード用のシンプルな css テンプレートをデザインしようとしています。上のセクションにロゴとタイトルを表示し、左のセクションにメニュー、中央にメニューに基づく情報を表示、右に情報を表示、下に連絡先情報を表示します。ページの左側/中央/右側を垂直方向および水平方向にスクロールできるようにするのが好きです。スクロールすると、ヘッダーが常にブラウザに表示される必要があります。

誰でもこれで私を助けることができますか?

<!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> 
4

2 に答える 2

0

スクロールの有無に関係なく常に表示されるdivを作成するには、次を使用します。

.visibleDiv
{
    position: fixed;
}
于 2012-08-07T18:18:46.967 に答える
0

はい、カランが言ったように、ヘッダー (#top) の位置を修正する必要があります。固定要素は、ブラウザー ウィンドウに対して相対的に配置されます。

#top {
position: fixed;
width: 100%
top: 0;
height: 100px;
border-bottom: 5px solid;
}

次に、コンテンツ div (#middle) がヘッダーと重なり始めているのが見えるので、上部の余白を確保する必要があります。

#middle {
margin-top: 100px /* the same height as your header */
}

また、いくつかの div をフローティングしているため、親 div の高さを調整するためにそれらの後にclearfixを実行することをお勧めします。

Web には CSS メニューとヘッダーの優れたチュートリアルがたくさんあるので、Google で検索してください。:]

于 2012-08-07T18:57:06.580 に答える