HTML+CSS Float(float)? ?? ????
???? ??????
Float? ???? ?? ????? ?????? ?? ?????.??? ???? ??
??? ???? ?????. ?? ??? ?? ? ?????? ??? ? ?? ???? ??? ? ??? ?????. ?? ??? ??? ????? ?? ??? ?? ?? ??? ???? ?? ??? ??? ???? ????? ?????.
???? ?? ?? ?? ??? ?? ?????.
???? ?? ??? ??? ??? ?? ????.
???? ????? ? ??? ?? ??? ??? ???? ??????.
div{
float:right;
}
???? ?? ?? ?????. ?? ?? ??? ?? 2?? div? ????
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>浮動(dòng)</title> <style type="text/css"> /*在這里會(huì)用到id選擇器*/ div{ width:600px; height:600px; border:1px solid black; } #dv1{ width:100px; height:100px; background-color:green; float:left; } #dv2{ width:100px; height:100px; background-color:red; float:left; } </style> </head> <body> <div> <div id='dv1'></div> <div id='dv2'></div> </div> </body> </html>