给定以下 HTML,如何使标签、输入和 2 个按钮存在于同一“行”上,并使输入在标签和 2 个按钮之间占据 100% 的空间,并改变浏览器宽度?换句话说,我希望输入锚定在两侧,这样当您使浏览器的宽度越来越小时,宽度会发生变化。
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>example</title>
<style>
/* ?? */
</style>
</head>
<body>
<div id="container">
<form class="form">
<p>
<label>xyz:</label>
<span class="item">
<input type="text" class="txt" name="description" id="description" />
<button>A</button>
<button>B</button>
</span>
</p>
<br clear="all" />
</form>
</div>
</body>
</html>
在此处查看 JSFiddle:http: //jsfiddle.net/3vGtJ/