Main Menu

Table HTML

Started by BOSSNIG, November 05, 2007, 03:44:15 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

BOSSNIG

How can you lock each section to one size in a single bracket, like on this forum, I currently have:

<table width="1000px" class="maintable" border="1px"><tr><td></td><td></td><td></td><td></td><td></td><td></td><td></td></tr></table>

Now the size of each section depends on what is typed in there,  want to set it to a certain size that It will always stay at.
IF U WERE KILLED TOMORROW, I WOULDNT GO 2 UR FUNERAL CUZ ID B N JAIL 4 KILLIN DA MOTHA FUKER THAT KILLED U!
..._.....____________________, ,
....../ `---___________----_____] = = = = = D
...../_==o;;;;;;;;_______.:/
.....), ---.(_(__) /
....// (..) ), ----"
...//___//
..//___//
.//___//

WE TRUE HOMIES
WE RIDE TOGETHER
WE DIE TOGETHER

Friendly Hostile

Not sure myself, but this site is quite helpful:

http://www.w3schools.com/default.asp

bluaki

#2
This is what style sheets are for.

<style>
td {
width="123456789px";
height="987654321px";}
</style>


Of course, don't leave the numbers like that.
If you have other tables with cells that you want a different size, add the "class" attribute to the table tag like this.

<style>
table.asdfasdf td {
width="42px";
height="1337px";}
</style>

<table class="asdfasdf"><tr><td>&nbsp;</td><td>&nbsp;</td></tr></table>

BOSSNIG

Quote from: bluaki on November 05, 2007, 03:49:34 PM
This is what style sheets are for.

<style>
td {
width="123456789px";
height="987654321px";}
</style>


Of course, don't leave the numbers like that.
If you have other tables with cells that you want a different size, add the "class" attribute to the table tag like this.

<style>
table.asdfasdf td {
width="42px";
height="1337px";}
</style>

<table class="asdfasdf"><tr><td>&nbsp;</td><td>&nbsp;</td></tr></table>


Ummm, get on yahoo plawks.
IF U WERE KILLED TOMORROW, I WOULDNT GO 2 UR FUNERAL CUZ ID B N JAIL 4 KILLIN DA MOTHA FUKER THAT KILLED U!
..._.....____________________, ,
....../ `---___________----_____] = = = = = D
...../_==o;;;;;;;;_______.:/
.....), ---.(_(__) /
....// (..) ), ----"
...//___//
..//___//
.//___//

WE TRUE HOMIES
WE RIDE TOGETHER
WE DIE TOGETHER