| Author |
Message / Information |
Kwama King

|
CSS tables for your forum..
replied on: 12/1/2003 6:12:12 PM
the float attribute?
yeah, to get the two div tags to be together, you would do a little something like this:
<html> <head> <title>untitled document</title> <style type="text/css"> <!-- .table { background-color: #000000; width: 50px; } .table2 { background-color: #000000; width: 50px; } .leftcolumn { float: left; padding: 15px; } .rightcolumn { float: right; padding: 15px; } --> </style> </head> <body> <div align="center"> <div class="leftcolumn"> <div class="table"> yeah... </div> </div> <div class="rightcolumn"> <div class="table2"> mmmhmmm </div> </div> </div> </body> </html>
im pretty sure that would work..
|
|