使用CSS和IE7清除浮动?[关闭]
我一直在敲打我的脑袋一天试图获得浮动并清除在旧版本的Internet Explorer中正常工作。我已经阅读了许多关于使用.clear的教程:在技巧之后等等但是我无法得到任何实际工作! 我有这样的HTML: <div id="section"> <h2>Section Title</h2> <label for="name">Name</label> <input type="text" id="name" /> <label for="dob">Date of Birth</label> <input type="text" id="dob" /> <label for="email">Email</label> <input type="text" id="email" /> </div> 和CSS这样: #section {border:solid 2px #b7ddf2; background:#ebf4fb; margin-top: 20px;} #label{clear: left; float: left; width: 300px; margin-left: 20px; margin-bottom: 10px;} #input{float: left; margin-bottom: 10px;} …