gpt4 book ai didi

html - CSS设计仪表板模板

转载 作者:行者123 更新时间:2023-11-28 13:46:11 26 4
gpt4 key购买 nike

我正在尝试为我的仪表板设计简单的 CSS 模板。喜欢顶部显示 Logo 和标题,左侧部分显示菜单,中心显示基于菜单的信息,右侧显示一些信息,底部显示一些联系信息。我喜欢页面的左/中/右侧可以垂直和水平滚动。滚动时,我需要标题始终显示在浏览器上。

谁能帮我解决这个问题?

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

最佳答案

无论是否滚动,要使 div 始终可见,请使用:

.visibleDiv
{
position: fixed;
}

关于html - CSS设计仪表板模板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11850239/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com