HTML開発ブログの登録ページデザイン(3)
下部バー
<div id="bottom"> <div id="bottom-content"> <div id="content-left"> <p><img src="img/3.jpg" height="150px"></p> <p> 网站位置 | 关于我们 |意见反馈|免责声明</p> <p>合作伙伴</p> </div> <div id="content-right"> <p>友情链接</p> <p>PHP中文网 | 小猪CMS</p> <p>公司网址:php.cn</p> </div> </div> </div>
下部のdiv.idセレクターを作成します
スタイルを変更します
#bottom{ width:100%; background-color:#323333; height:300px; margin-top:70px; } #bottom-content{ width:1000px; overflow:hidden; margin:0 auto; color:white; height:280px; } #content-left{ width:460px; float:left; height:280px; } #bottom-content p{ margin-top:10px; } #content-right{ width:460px; float:right; height:280px; text-align: center; margin-top: 40px; }
下部バーを2つのdivに分割し、1つは左フローティング用、もう1つは右フローティング用で、分離できるようにします両方の列を操作します。
りー