css - 一个框决定高度,其他宽度

发布于 2024-12-28 16:41:20 字数 599 浏览 0 评论 0原文

拥有两个 div 的最佳方式是什么,左右相邻,一个决定宽度,另一个决定高度:

CSS:

body
{
    width:960px;
    margin:auto;
}

.wholething
{
    background-color:red;
}

.leftside
{
    width:230px;
    background-color:blue;
}
.rightside
{
    height:640px;
    background-color:green;
}

HTML:

<div class="wholething">
    <div class="leftside">
    </div>
    <div class="rightside">
    </div>
</div>

结果看起来像一个蓝色框,宽 230 像素,高 640 像素,并且一个绿框,宽 730 像素,高 640 像素。然后,如果 CSS 的宽度或高度发生变化,两个框都会相应调整。请仅添加到CSS;除非绝对必要,否则不要删除 css。

What is the best way to have two divs, left and right of each other, where one dictates the width, and the other dictates the height:

CSS:

body
{
    width:960px;
    margin:auto;
}

.wholething
{
    background-color:red;
}

.leftside
{
    width:230px;
    background-color:blue;
}
.rightside
{
    height:640px;
    background-color:green;
}

HTML:

<div class="wholething">
    <div class="leftside">
    </div>
    <div class="rightside">
    </div>
</div>

The result would look like a blue box 230px wide and 640 px high, and a green box 730 px wide and 640 px high. Then, if the CSS is changed for width or height, both boxes will adjust accordingly. Please only add to the css; do not remove css unless absolutely necessary.

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

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

发布评论

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

评论(1

节枝 2025-01-04 16:41:20
body { 
    width:960px; 
    margin:auto; 
}
.wholething {
    background-color:red;
    position: relative;
    height: 640px;
} 
.leftside { 
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 0px;
    width:230px; 
    background-color:blue; 
} 
.rightside { 
    position: absolute;
    left: 230px;
    right: 0px;
    top: 0px;
    bottom:0px; 
    background-color:green; 
} 

那会起作用的。但是,您需要更改第二个的 left 以匹配第一个的 width

body { 
    width:960px; 
    margin:auto; 
}
.wholething {
    background-color:red;
    position: relative;
    height: 640px;
} 
.leftside { 
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 0px;
    width:230px; 
    background-color:blue; 
} 
.rightside { 
    position: absolute;
    left: 230px;
    right: 0px;
    top: 0px;
    bottom:0px; 
    background-color:green; 
} 

That'll work. However you will need to change the left of the second one to match the width of the first.

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