gpt4 book ai didi

html - CSS:我无法将宽度设置为 "auto"始终显示 100%

转载 作者:太空宇宙 更新时间:2023-11-03 21:50:52 25 4
gpt4 key购买 nike

出于某种原因

div 的宽度为 100%,如果我将其设置为自动,则没有任何变化。尝试了 display: block; 仍然没有。

我有什么index.html

.box {
border: 1px solid #555;
display: block;
width: auto;
}
<head>
<title>project x</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>

<body>
<div class='box'>This is a box</div>
<div class='box'>This is another box</div>
</body>

我喜欢破解问题,但这个问题让我破解了。

编辑

我想让 div 占据单词的宽度。我不希望它是 100%。

最佳答案

添加到 Explosion Pills answer 现在它很清楚你想要什么,这个 css 应该可以工作。

.box {
border: 1px solid #555;
display: inline-block;
float:left;
clear:both;
}

或者,您可以放置​​一些 <br>每个 <div> 之后的标签 block

关于html - CSS:我无法将宽度设置为 "auto"始终显示 100%,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17493927/

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