防止字段集调整内容大小

时间:2017-06-04 12:35:26

标签: html css display fieldset

我尝试调整<fieldset>元素的大小,但它会自动缩小内容。然后,我在我的CSS文件中添加了display:inline-block(正如许多关于类似主题的答案所建议的那样)。然而,这根本没有帮助,一切都保持不变。我该怎么办?我想要一个noob友好的解决方案,因为我不太擅长CSS,你可能已经注意到了。干杯!

fieldset {
  display: inline-block;
  border: 1px solid blue;
  background-color: white;
  width: 40%;
}

legend {
  display: inline-block;
  padding: 4px 8px;
  border: 1px solid blue;
  font-size: 15px;
  color: white;
  background-color: blue;
  text-align: left;
}

label {
  width: 100px;
  margin-right: 30px;
  display: inline-block;
  text-align: left;
}

input[type=text] {
  width: 25%;
  padding: 10px 20px;
  margin: 0px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}
<fieldset>
  <legend>XXX</legend>
  <label for="username">Username:</label>
  <input type="text" name="username">
</fieldset>

1 个答案:

答案 0 :(得分:1)

如果您对内容的宽度使用百分比,它将根据容器的宽度(字段集)进行更改。

只需删除百分比值。

fieldset {
  display: inline-block;
  border: 1px solid blue;
  background-color: white;

}

legend {
  display: inline-block;
  padding: 4px 8px;
  border: 1px solid blue;
  font-size: 15px;
  color: white;
  background-color: blue;
  text-align: left;
}

label {
  width: 100px;
  display: inline-block;
  text-align: left;
}

input[type=text] {

  padding: 10px 20px;
  margin: 0px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}
<fieldset>
  <legend>XXX</legend>
  <label for="username">Username:</label>
  <input type="text" name="username">
</fieldset>