2016-08-05 46 views
-3

請問您可以告訴我此代碼中出現了什麼問題嗎?它看起來在這裏很好,但一旦我把它添加到我的博客它改變當我將它放在我的博客上時,搜索框發生變化

enter image description here

非常感謝你

<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>

回答

1

它最絕的是一箱上漿問題。 box-sizing: border-box;聽起來就是你需要的。

+0

我應該在哪添加它? –

+0

它可以在#rectangle或其上面的東西上 – Jim

相關問題