由于某些原因
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%。