ホームページ >ウェブフロントエンド >htmlチュートリアル >CSS 1 行に 2 つの div を配置する solution_html/css_WEB-ITnose
1 行に 2 つの div を作成するには、float を使用するか、合計幅が大小の div の合計と等しくなるように設定する必要があります
<style type="text/css教程"><!--.onediv{width:90px; height:50px;float:left;margin:0 0 0 5px; border:1px #000 solid; background:#ff0000}.twodiv{width:90px; height:50px;float:left;margin:0 0 0 5px; border:1px #000 solid; background:#99cc00}--></style> <div class="onediv"></div><div class="twodiv"></div>
From: http://www.111cn.net /cssdiv/css/36717.htm