...子级div的宽度受到了父级div的限制 而我想要子级的div宽度随内容多 ...
发布网友
发布时间:2024-03-06 09:07
我来回答
共3个回答
热心网友
时间:2024-03-07 05:30
#父级 {
width: 800px;
height: 200px;
overflow: hidden;
margin: 0px auto;
margin-top: 10px;
}
#子级 {
height: 200px;
width: auto;
position: absolute;
}
.子级div内的内容 {
position: relative;
width: 200px;
height: 190px;
float: left;
text-align: center;
font-size: 14px;
font-weight: bold;
padding-top: 5px;
}
热心网友
时间:2024-03-07 05:24
div标签无法实现宽度动态。
可以配合js控制实现。
热心网友
时间:2024-03-07 05:29
可以试一下用
width:auto; //可以不写
white-space: nowrap; //可以让div随内容变化,但是文本不会换行