首先,我FE技能是很基本很抱歉前期,如果這一個愚蠢的問題...麻煩
我試圖創建一個基本的博客頁面,我有內容div和帖子鏈接div的佈局有問題。我希望他們並排漂浮,讓他們彼此之間有邊距,側邊和頁眉/頁腳。
我使用的反應,引導爲和它那種工作,但我想不通,爲什麼內容DIV從頂部沒有邊距和側邊欄DIV呢..
這裏是我的現場:https://tal-joffe.github.io/blog (忽略醜陋的顏色和字體,我剛開始:))
這是同時包含div的組件:
const PostsTab =() => (
<div className="post-tab">
<Grid>
<Row>
<Col md={8}>
<ContentContainer/>
</Col>
<Col md={4}>
<VisiblePostsList/>
</Col>
</Row>
</Grid>
</div>
)
這是CSS我有對內部組件容器和body:
.side-bar {
background-color: gray;
min-height: 800px;
}
.post-content{
background-color: #efefef;
min-height: 800px;
}
body {
font-family: sans-serif;
background-color: aquamarine;
overflow: auto;
}
沒有其他的全局CSS代碼,我沒有在JavaScript代碼中使用任何內聯樣式。
我錯過了什麼?
他們爲什麼要有「邊緣頂」? – Andrew
@Andrew我只是覺得它看起來更好。無論我想提高我的前端功能,並想了解爲什麼2個div的行爲不同 –