Can you control the width of a TD tag using CSS?
Printable View
Can you control the width of a TD tag using CSS?
yes
td {
// css in here
}
What exactly is the syntax cpradio?
Thanks
Code:<style type="text/css">
td {
color: #FFFFFF;
background: #000000;
//etc.
}
</style>
Thanks for your reply.
I don't think that will control the width of the TD tag.
in HTML: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.Code:<td style="width: 100px;"></td>
You can specify the width in "px", "%", "pt" or "mm", "cm" etc