|
-
Apr 22nd, 2002, 08:16 PM
#1
Thread Starter
Fanatic Member
TD Tag
Can you control the width of a TD tag using CSS?
Bird of Prey
Mr. Bald Eagle.
[img][/img]
-
Apr 22nd, 2002, 09:17 PM
#2
Fanatic Member
yes
td {
// css in here
}
-
Apr 23rd, 2002, 11:25 AM
#3
Thread Starter
Fanatic Member
What exactly is the syntax cpradio?
Thanks
Bird of Prey
Mr. Bald Eagle.
[img][/img]
-
Apr 23rd, 2002, 11:40 AM
#4
Fanatic Member
Code:
<style type="text/css">
td {
color: #FFFFFF;
background: #000000;
//etc.
}
</style>
-
Apr 23rd, 2002, 11:20 PM
#5
Thread Starter
Fanatic Member
Thanks for your reply.
I don't think that will control the width of the TD tag.
Bird of Prey
Mr. Bald Eagle.
[img][/img]
-
Apr 24th, 2002, 04:24 AM
#6
Addicted Member
in HTML:
Code:
<td style="width: 100px;"></td>
Or use in the way mentioned above... td {width: 500px;} either in your page or in a referenced style sheet - but that will control all <td>s unless you specify classes etc.
You can specify the width in "px", "%", "pt" or "mm", "cm" etc
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|