2016-11-21 96 views
0

我想爲本網站添加頂級菜單,但它只是不斷爲topmenu添加「邊距」。如何刪除html導航欄上的「邊距」?

enter image description here

body { 
 
    background-color: #2E3058; 
 
    font-family: 'sans-sefir'; 
 
} 
 
#topMenu { 
 
    width: 100%; 
 
    height: 50px; 
 
    margin: 0; 
 
    padding: 0; 
 
    border-bottom: 1px solid #ccc; 
 
    background-color: #3A3D70; 
 
}
<div id="topMenu"> 
 
    <button class="topMenuBtn">Home</button> 
 
    <button class="topMenuBtn">Forum</button> 
 
    <button class="topMenuBtn">About</button> 
 
</div>

+0

刪除TopMenu中除去高度部分:高度 – Nosyara

+0

你能添加你的預期結果的圖片嗎? –

+0

你的意思是身體會增加這些利潤率? – jeepingviini

回答

0

body { 
 
    background-color: #2E3058; 
 
    font-family: 'sans-sefir'; 
 
} 
 
#topMenu { 
 
    width: 100%; 
 
    margin: 0; 
 
    padding: 0; 
 
    border-bottom: 1px solid #ccc; 
 
    background-color: #3A3D70; 
 
}
<div id="topMenu"> 
 
    <button class="topMenuBtn">Home</button> 
 
    <button class="topMenuBtn">Forum</button> 
 
    <button class="topMenuBtn">About</button> 
 
</div>

從CSS文件

+0

我不認爲這會有所幫助,我已經在評論中得到了幫助,使用'html,body {margin:0;填充:0}'工作。 – jeepingviini

+0

反正謝謝你。 – jeepingviini