gpt4 book ai didi

html - 字段集宽度问题

转载 作者:太空宇宙 更新时间:2023-11-04 02:33:24 26 4
gpt4 key购买 nike

我有这个 html:

<body>
<table align="center" width="50%">
<tr>
<td>
<div id="iconpanel">
<img alt="Logo" src="logo.gif">
<hr
style="border: solid #d3d3d3 1px; height: 3px; background-color: #d3d3d3;">
<form>
<fieldset id="fieldset">
<legend>Personalia:</legend>
Name: <input type="text"><br> Email: <input
type="text"><br> Date of birth: <input type="text">
</fieldset>
</form>
</div>
</td>
</tr>
</table>
<div id="main"></div>
</body>

连同我的 CSS:

    #iconpanel {
border-radius: 25px;
border: 2px solid #d3d3d3;
padding: 20px;
width: 100%;
height: 100%;
align: center;
}

#fieldset {
border-radius: 25px;
border: 2px solid #d3d3d3;
padding: 20px;
width: 100%;
height: 100%;
align: center;
}

我得到这个输出:

enter image description here

如您所见,我的 fieldset 的宽度比父面板长...

这是我使用 Css 的第一步。也许你能帮我找到问题。

非常感谢

斯特凡

最佳答案

box-sizing: border-box; 添加到 #fieldset 以获得您想要的内容,因为现在元素的宽度将为 100% + 每边 20pxpadding

启用 box-sizing: border-box; 后,CSS 将尝试在设置的宽度实现填充,因此宽度为 20px + ? = 100%;

border-box The width and height properties include the padding and border, but not the margin. This is the box model used by Internet Explorer when the document is in Quirks mode. Note that padding and border will be inside of the box e.g. .box {width: 350px; border: 10px solid black;} leads to a box rendered in the browser of width: 350px. The content box can't be negative and is floored to 0, making it impossible to use border-box to make the element disappear.

阅读更多关于 box-sizing 的信息 Mozilla Developer Network .

关于html - 字段集宽度问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36105209/

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