gpt4 book ai didi

html - Div 填充父容器

转载 作者:技术小花猫 更新时间:2023-10-29 12:12:03 24 4
gpt4 key购买 nike

我有一条评论类似于我在下面模拟的内容。 .avatar.actions 具有静态宽度。 .comment 没有。我应该如何构建我的 HTML 和 CSS,以便 .text.comment 改变它的宽度时占用所有可用空间?

enter image description here

最佳答案

伪(未经测试)代码

<div class="comment">
<div class="avatar"></div>
<div class="actions"></div>
<div class="text"></div>
</div>

CSS:

.avatar {float: left;}
.actions {float: right;}
.comment, .text {overflow: hidden;}

Working Example:

.avatar {
float: left;
margin-right: 10px;
width: 100px;
height: 100px;
background: #fff;
}
.actions {
float: right;
margin-left: 10px;
width: 30px;
height: 130px;
background: #fff;
}

.comment, .text {
overflow: hidden;
}
.comment {
background: #eee;
width: 600px;
padding: 10px;
}
.text {
background: #fff;
}

HTML:

<div class="comment">
<div class="avatar">..</div>
<div class="actions">..</div>
<div class="text">Your comment goes here<br>more text<br>more text</div>
</div>

关于html - Div 填充父容器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6314993/

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