DIV+CSS 按比例等分
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title></title> <style> .wrapper { width: 100%; /* 也可以固定宽度 */ height: 200px; } .wrapper > div { display: inline-block; /* 如需支持IE8以下版本,用浮动来做 */ width: calc(100% / 3.09); /* 此处运用了一个css3的表达式,将div三等分,IE8及以上可以支持,当然也可以根据需要设置固定值 */ width: -webkit-calc(100% /3.09); /*3.09 排除margin的宽度*/ width: -moz-calc(100% / 3.09); height: 100%; } </style> </head> <body> <div class="wrapper"> <div style="background-color:red"></div> <div style="background-color:green"></div> <div style="background-color:blue"></div> </div> </body> </html>