新手求教:我的floatDIV空白了_html/css_WEB-ITnose
來源:懂視網(wǎng)
責(zé)編:小采
時間:2020-11-27 16:30:29
新手求教:我的floatDIV空白了_html/css_WEB-ITnose
新手求教:我的floatDIV空白了_html/css_WEB-ITnose:剛學(xué)習(xí)HTML+CSS,請各位多多指教。 看視頻教程的時候,學(xué)習(xí)做一個田字格,代碼如下: .one{ width:100px; height:100px; background:#cc0000 float:left; } .two{ width:100px; height:100px; backgr
導(dǎo)讀新手求教:我的floatDIV空白了_html/css_WEB-ITnose:剛學(xué)習(xí)HTML+CSS,請各位多多指教。 看視頻教程的時候,學(xué)習(xí)做一個田字格,代碼如下: .one{ width:100px; height:100px; background:#cc0000 float:left; } .two{ width:100px; height:100px; backgr
剛學(xué)習(xí)HTML+CSS,請各位多多指教。
看視頻教程的時候,學(xué)習(xí)做一個田字格,代碼如下:
1
2
3
4
不過變成了這樣:
百度了一下,沒看出錯在哪里。請各位大大指點指點
回復(fù)討論(解決方案)
background-color
.one{
width:100px;
height:100px;
background:#cc0000;
float:left;
}
.two{
width:100px;
height:100px;
background: #0066ff;
float:left;
}
.three{
width:100px;
height:100px;
background:#66ff00;
float:left;
clear:left;
}
.four{
width:100px;
height:100px;
background:#ffff00;
float:left;
}
分號沒加
而且你的background:#000000 后面缺少;號
補充一下,我將float:left跟clear:left兩個指令去掉之后,就變成這樣:
反正就是一定不能加float:left,一加上顏色就不見了
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com
新手求教:我的floatDIV空白了_html/css_WEB-ITnose
新手求教:我的floatDIV空白了_html/css_WEB-ITnose:剛學(xué)習(xí)HTML+CSS,請各位多多指教。 看視頻教程的時候,學(xué)習(xí)做一個田字格,代碼如下: .one{ width:100px; height:100px; background:#cc0000 float:left; } .two{ width:100px; height:100px; backgr