1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>Equal DIV Test</title> <style type="text/css"> <!-- body { margin: 0; } #wrappr { position: relative; width: 1000px; margin-left:auto; margin-right:auto; border: thin solid #ff0000; } #subwrappr { position: relative; width: 960px; margin-left:auto; margin-right:auto; padding:0; border: thin solid #000000; } .subdiv { width: 190px; float: left; border: thin solid #0000ff; } --> </style> </head> <body> <div id="wrappr"> <h1>Equal DIV Test</h1> <div id="subwrappr"> <div class="subdiv">number 1</div> <div class="subdiv">number 2</div> <div class="subdiv">number 3</div> <div class="subdiv">number 4</div> <div class="subdiv">number 5</div> <br clear="all" /> </div> </div> </body> </html>