HTML Table

JakJak

Paragon
Joined
Apr 27, 2009
Messages
2,004
Reaction score
0
FP$
6
Does anyone know how to code HTML Tables? Most of the coding on The Hub is tables. 😛 I find tables to be a pain sometimes because you have to put <tr> and <td> in the right area of the coding or else it will stuff up. 🙁 Also, borders are best to remove on a HTML table unless you're doing some sort of list. 🙂
 
I know how to and I also agree how they can be a pain, but if used efficiently it will help your website's design.
 
Yeah. Also, you can add a background into a table and have words in the background. CSS allows this but I'm not going to increase my CSS page everytime I write a bit of content that requires a background. 😛
 
CSS, is pretty easy to add a background:
Code:
background: url('LINK');
I think that is how you do it.
 
This is a part of content that I coded. This is CSS...

/*CSS Background used for Hub pages. */

#content {
background: #CCC;
background-image: url('/images/HUB2/hubbot.jpg');
background-repeat: no-repeat;
background-position: bottom left;
}

You need to add 'no-repeat' somewhere in the page or it may repeat itself. 🙁
 
Do you mean this..

background-image: url('http://teh-hub.co.cc/images/HUB2/hubbot.jpg');
 
No I mean
Code:
background: #CCC url('http://teh-hub.co.cc/images/HUB2/hubbot.jpg');
 
Hmm. You could do that. 🙂 However, I need it to be displayed at the bottom on the left.
 
Back
Top Bottom