Page 1 of 1
css
Posted: Mon May 24, 2004 5:22 pm
by pinehead18
I'm looking for some way to create a css border that is very thin.
When you do a regualr border=1 it is thick.
Any suggestions?
Thank you for your help.
Anthony
Posted: Mon May 24, 2004 5:30 pm
by feyd
Code: Select all
table
{
border: 1px solid black;
}
Posted: Mon May 24, 2004 5:56 pm
by pinehead18
I hate to be a n00b. But, how do i incorporate that into a table taht already exists? Do i need to re-create the table in that css thing. Or do i need to ust add that as a style , or name that table as an id then id it with my table?
how do i go about that?
thank you
Anthony
Posted: Mon May 24, 2004 6:01 pm
by feyd
that code will apply to all tables by default. If you want to restrict it down, you can use something like:
Code: Select all
table#some_id,
/* or */
table.some_class_name
{
/* css here */
}
Posted: Tue May 25, 2004 2:35 am
by mendingo
I would do it by adding this to the <style> declaration (or css file):
Code: Select all
.thinBorder
{
border:1px solid black;
}
then editing the table so it says
Code: Select all
<Table class="thinBorder" cellspacing=...>
If you want every table on the page to automatically look like that, then you just need to add this to the style:
Code: Select all
table
{
border:1px solid black;
}
And you don't need to change your tables at all.