固定标头 +固定右侧导航液体含量区

发布于 2024-10-29 04:28:13 字数 109 浏览 5 评论 0原文

我想创建一个布局,其中标题和右侧导航是固定的,并且 内容区域是流动的。

我附上了屏幕截图以帮助更好地解释这一点。

如果可能的话,我真的很感激一些帮助。

谢谢

I'd like to create a Layout where the header and Right side navigation are fixed and the
content area is fluid.

I attached a screen shot to help explain this better.

If this is possible, I would really appreciate some help.

Thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

凉城凉梦凉人心 2024-11-05 04:28:13

试试这个:

* {margin: 0; padding: 0;};

.wrap {width: 980px; margin: auto;}
header {width: 100%; height: 200px; float: left;}
#content {width: 100%; padding: 0 0 0 150px; min-height: 500px;}
aside {width: 150px; min-height: 100%; height: auto; float: left; margin-left: 150px;}

<div class="wrap">
<header>
</header>
<div id="content">
<aside>
</aside>
</div>
</div>

这会给你你想要的。这是针对 HTML5 的,尽管只是将(标题和旁边)更改为 div 标签。

Try this:

* {margin: 0; padding: 0;};

.wrap {width: 980px; margin: auto;}
header {width: 100%; height: 200px; float: left;}
#content {width: 100%; padding: 0 0 0 150px; min-height: 500px;}
aside {width: 150px; min-height: 100%; height: auto; float: left; margin-left: 150px;}

<div class="wrap">
<header>
</header>
<div id="content">
<aside>
</aside>
</div>
</div>

This will get you what you want. This is for HTML5 although just change (header and aside) to div tags.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文