I have a "simple" example of a table I want to build. However it does not "line up" so to speak.
Here is the "simple" example.
Oh yeah, any enhancements/suggestions will be greatly appreciated and most appreciated.
E
HTML Code:<html> <head> <title></title> </head> <body> <div id="table" style="width: 75%; border: 1px blue solid;"> <div style="clear:both; border: 1px black solid; text-align: center;"> Table cell 123 header </div> <div class="table_row" style="width: 100%"> <div class="table_cell1" style="float:left; text-align: center; border: 1px red solid; width: 33%;">row 1, cell 1</div> <div class="table_cell2" style="float:left; text-align: center; border: 1px red solid; width: 33%;">row 1, cell 2</div> <div class="table_cell3" style="float:left; text-align: center; border: 1px red solid; width: 33%;">row 1, cell 3</div> </div> <div class="table_row" style="clear:both; border: 1px blue;width: 100%;"> <div class="table_cell1" style="float:left; text-align: center; border: 1px red solid; width: 33%;">row 2, cell 1</div> <div class="table_cell2" style="float:left; text-align: center; border: 1px red solid; width: 33%;">row 2, cell 2</div> <div class="table_cell3" style="float:left; text-align: center; border: 1px red solid; width: 33%;">row 2, cell 3</div> </div> <div class="table_row" style="clear:both; width: 100%; border: 1px blue;"> <div class="table_cell1" style="float:left; text-align: center; border: 1px red solid; width: 33%;">row 3, cell 1</div> <div class="table_cell2" style="float:left; text-align: center; border: 1px red solid; width: 33%;">row 3, cell 2</div> <div class="table_cell3" style="float:left; text-align: center; border: 1px red solid; width: 33%;">row 3, cell 3</div> </div> </div> </body> </html>



Reply With Quote



Bookmarks