宽度为100%的div,旁边是一个固定宽度的div

发布于 2024-12-08 05:43:00 字数 257 浏览 1 评论 0原文

很抱歉这个非常愚蠢的问题,我觉得在大多数情况下我可以轻松做到这一点,但我目前正在使用共享点,尝试在这方面做任何事情都是地狱!

基本上我有一个 230px 宽的侧面导航 (.menu-vertical),旁边有一个 div (.mainContent),我想用它(留白!)填充屏幕的其余部分。

不幸的是,代码中有大约 798 个随机放置的 div、span 和其他任何内容,我似乎无法在不破坏网站的情况下删除这些内容,因此,任何有关如何实现这一点的建议将不胜感激,谢谢!

Sorry for the incredibly stupid question, I feel like in most circumstances I could do this easily, but I'm using sharepoint at the moment and trying to do anything in this is hell!

Basically I have a side navigation (.menu-vertical) that is 230px wide, and a div next to it (.mainContent) that I would like to (padding aside!) fill the rest of the screen.

Unfortunately there are around 798 randomly placed divs, spans and whatever else in the code too that I can't seem to strip without breaking the site, so any advice on exactly how to achieve this would be much appreciated, thank you!

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

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

发布评论

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

评论(1

逐鹿 2024-12-15 05:43:00

基本上我有一个 230px 的侧面导航 (.menu-vertical)
宽,旁边有一个 div (.mainContent),我想要
(留白!)填充屏幕的其余部分。

..

网站的基础是 .container div,并且
.menu-vertical(固定)和 .mainContent(流动,100%)div 位于内部。

据我了解,您正在寻找以下内容: http://jsfiddle.net/thirtydot/wv42t/

CSS:

.container {
    border: 3px solid #666;
    overflow: hidden
}
.menu-vertical {
    width: 230px;
    float: left;
    padding: 10px;
    border: 2px solid #f0f
}
.mainContent {
    overflow: hidden;
    padding: 30px;
    border: 2px solid #00f
}

HTML:

<div class="container">
    <div class="menu-vertical">menu-vertical</div>
    <div class="mainContent">mainContent</div>
</div>

Basically I have a side navigation (.menu-vertical) that is 230px
wide, and a div next to it (.mainContent) that I would like to
(padding aside!) fill the rest of the screen.

..

the basis of the site is in place with a .container div, and the
.menu-vertical (fixed) and .mainContent (fluid, 100%) divs inside.

From what I understand, you're looking for this: http://jsfiddle.net/thirtydot/wv42t/

CSS:

.container {
    border: 3px solid #666;
    overflow: hidden
}
.menu-vertical {
    width: 230px;
    float: left;
    padding: 10px;
    border: 2px solid #f0f
}
.mainContent {
    overflow: hidden;
    padding: 30px;
    border: 2px solid #00f
}

HTML:

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