我現在的DIV看起來這樣:圍繞多個div在一個DIV
這是應該的:
在我的CSS文件,我有這樣的代碼:
.noteWrapperDiv { /* the container div */
width: 100%;
height: 50px;
background-color: #21252B;
border-width: 2px;
border-style: solid;
border-radius: 5px;
border-color: #9DA5B4;
}
.noteContentDiv { /* the first inner div */
color: #9DA5B4;
float: left;
}
.noteButtonBarDiv { /* the second inner div */
float: right;
}
所以我的包裝中的兩個div應該居中。我試圖用浮動上班左右,最高:50%,但它並沒有得到中心..
請分享HTML太 – Chris