非常感谢
<style>
#rectangle {
width: 245px;
height: 50px;
background: #F8E7E1;
padding: 40px;
}
.container-1 input#search {
border: 0.5px solid #ccc;
width: 240px;
height: 50px;
background: #fff;
font-size: 14px;
float: left;
color: #000;
padding-left: 5px;
}
</style>
<div id="rectangle">
<div class="box">
<div class="container-1">
<span class="icon"><i class="fa fa-search"></i></span>
<input type="search" id="search" placeholder="Search..." />
</div>
</div>
</div>
&#13;
答案 0 :(得分:1)
绝对是一个盒子大小问题。
box-sizing: border-box;
听起来就像你需要的那样。