我正在尝试将文本框的宽度设置为 100%,但它会拉伸容器。我检查了一些类似的问题,但似乎没有解释为什么会出现问题。我知道手动设置属性但是我需要找出为什么会发生这种情况。我必须使用 100% 的属性值来做到这一点..
<body>
<form id="form1" runat="server">
<div style="border:1px solid gray;">
<input type="text" style="width: 100%;" id="title"/>
</div>
<div>
<a href="#" id="postfile" style="float:left;">Post</a><span style="display:none; border:1px solid #ee1100; margin-left:10px; color:#cc1100" id="errormessage"></span>
</div>
</form>