日期:2014-05-17 浏览次数:20775 次
关键在于添加?
?
overflow: hidden;
padding-bottom:9999px;
margin-bottom:-9999px;
?
?
两行:
?
?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name='keywords' content='' /> <meta name='description' content='' /> <title>两列等高</title> <style type="text/css"> #wrap{width:500px;margin:0 auto; overflow:hidden;} #SideBar{width:180px;float:left;border:1px solid #333; padding-bottom:9999px; margin-bottom:-9999px;} #content{width:300px;float:right; border:1px solid #ccc; padding-bottom:9999px; margin-bottom:-9999px;} </style> </head> <body> <div id="wrap"> <div id="SideBar">导航<br />栏目名称<br />栏目名称<br />栏目名称<br /></div> <div id="content">新闻<br />文字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容文字内容字内容文</div> </div> </body> </html>?
?
?
?
简单:
?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>无标题 1</title> <style type="text/css"> * { margin: 0; padding: 0; } body { margin:30px; font:14px/1.6em Verdana, Lucida, Arial, Helvetica, 宋体,sans-serif; } .main { overflow: hidden; width: 800px; margin: 0 auto; } .left { float: left; width: 250px; overflow: hidden; background:#FB9D51; } .center { float:left; margin-left:5px; width:295px; background:#FB9D51; } .right { float: right; width: 245px; overflow: hidden; background:#FB9D51; } .equal { padding-bottom: 32767px; margin-bottom: -32767px; } </style> </head> <body> <div class="main"> <div class="left equal"> <p>测试一下</p> <p>测试一下</p> <p>测试一下</p> </div> <div class="center equal"> <p>测试一下</p> <p>测试一下</p> <p>测试一下</p> <p>测试一下</p> <p>测试一下</p> <p>测试一下</p> <p>测试一下</p> <p>测试一下</p> <p>测试一下</p> </div> <div class="equal right"> <p>测试一下</p> <p>测试一下</p> <p>测试一下</p> <p>测试一下</p> <p>测试一下</p> <p>测试一下</p> </div> </div> </body> </html>?
完整:
?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>无标题 1</title> <style type="text/css"> *{ margin: 0; padding: 0; } body { margin:30px; font:14px/1.6em Verdana, Lucida, Arial, Helvetica, 宋体,sans-serif; } .main