html - Div's are over lapping? -
i'm trying make menu box , video box video box overlapping menu div's here code.
<!doctype html> <html> <!doctype html> <html> <head> <meta charset="utf-8"> <title>untitled document</title> <style> .colm-1 { float:left; display:block; } .my-video-box { width:300px; height:300px; background:#f00; } </style> </head> <body> <!--- menu box ---> <div class="colm-1">colm 1</div> <div class="colm-1">colm 1</div> <div class="colm-1">colm 1</div> <!--- video box ---> <div class="my-video-box"></div> </body> </html> my menu div's floating left while i'm not floating video div/box.
when use float in div's try use clear after try this
<body> <!--- menu box ---> <div class="colm-1">colm 1</div> <div class="colm-1">colm 1</div> <div class="colm-1">colm 1</div> <div style="clear:both;"></div> <!-- need add --> <!--- video box ---> <div class="my-video-box"></div> </body>
Comments
Post a Comment