日期:2014-05-17 浏览次数:20682 次
<style> body { text-align: center; font-size: 12px; border: 1px solid red; } #parent { width: 920px; height: 200px; margin-right: auto; margin-left: auto; } #div1 { width: 300px; height: 200px; background-color: white; float: left; border: 1px dashed blue; text-align: left; } #div2 { width: 300px; height: 200px; background-color: white; float: left; border: 1px dashed blue; text-align: center; margin-left: 10px; margin-right: 10px; margin-left: 10px; } #div3 { width: 300px; height: 200px; background-color: white; float: left; border: 1px dashed blue; text-align: right; } </style>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title>New Document</title> </head> <body> <div id="parent"> <div id="div1">1</div> <div id="div2">2</div> <div id="div3">3</div> </div> </body> </html>