關于三列布局中間列內容不換行
.left{ width:200px; height:600px; background:#ccc;position:absolute; left:0; top:0} .main{ height:600px;margin:0 300px 0 200px; background:#9CF} .right{ height:600px; width:300px; position:absolute; top:0; right:0;background:#FCC;} 評論里有人說內容不換行,我發現了問題所在 margin:0 300 0 200;要帶單位 margin:0 300px 0 200px;
2016-06-25
其實最好0也加px,雖然加不加并不影響什么,但是是個好習慣。
2016-06-19
.left{ width:200px; height:600px; background:#ccc; 【任務1】;position:absolute ;left:0; top:0}
.main{ height:600px; margin:0 310px 0 210px;【任務2】; background:#9CF}
.right{ width:300px; height:600px; ?position:absolute;right:0 ;top:0; 【任務3】; background:#FCC;}
2016-06-19
對,是要單位的