我在底部和頂部的div之間得到空格(水平),我不知道原因。divs之間的空格
#header {
display: inline-block;
float: left;
width: 100%;
height: auto;
}
#header #date {
display: inline-block;
float: left;
width: 100%;
height: auto;
}
#header #date #date_day_month {
display: inline-block;
float: left;
width: 100%;
height: auto;
line-height: 75px;
background-color: #E96567;
color: #FFF;
text-align: center;
font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
font-size: 35px;
margin: 0px;
}
#header #date #date_day {
display: inline-block;
float: left;
width: 100%;
height: auto;
line-height: 40px;
background-color: #DB5658;
color: #FFF;
text-align: center;
font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
font-size: 17px;
margin: 0px;
}
#header #logo {
display: inline-block;
float: left;
height: auto;
width: 100%;
background-color: #DB5658;
min-height: 30px;
}
#header #logo_comment {
display: inline-block;
float: right;
height: 40px;
border-top-left-radius: 110%;
background-color: #FFF;
width: 60%;
text-align: right;
line-height: 40px;
font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
font-size: 14px;
padding: 0px 10px 0px 10px;
}
<body>
<div id="header">
<div id="date">
<div id="date_day_month">
hoi
</div>
<div id="date_day">
hoi
</div>
</div>
<div id="logo">
<div id="logo_comment">
Hoi
</div>
</div>
</div>
</body>
我注意到,當我在這裏堆運行這段代碼,這個問題並不積極。然而在撥弄它顯然是爲我。
-----------------------編輯:
使用Chrome的最新版本,在我的戴爾XPS 13 (9434),而不是放大或縮小。 http://postimg.org/image/ggbkubiyz/(我的屏幕截圖)
我在小提琴裏看不到它 – j08691
同樣在這裏;小提琴看起來很像片段。有沒有把頁面放大或縮小? –
http://postimg.org/image/ggbkubiyz/首頁我不是那個在這裏瘋狂的人:D – Mart