English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

Thanks to those who answered promptly, however none of your suggestions work in my senario. (some work on a blank page with a new table inserted, but not with what I'm working on)

I should also say its a form i using - dont know how different it is to a tabe, not much think.

I'll give you a breakdown of what I've got


Name





The above is repeated for each line of the form. This was created by some bot online. My (original) text is all fine outside the form, but if I CRTL +scroll the text size changes inside the form. I cant seem to stop it. As i said in last question there is a box online to apply css to table or Td but i cant get it to work.
Can any of you modify the code above to stay at Verdana 12px without changing size when CTRL=scrolling. 10 pts at stake again!

2007-02-21 08:09:28 · 3 answers · asked by sambucaman 3 in Computers & Internet Programming & Design

3 answers

try removing the font tag... from ur example it would then be;


Name


ur over writing the *global* td tag i gave u earlier

/* Set the default font within table cells. */
td {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 18px;
color: #000000;
}

as a rule of thumb, the more *local* style will take precedent over the global one...

or change ur local font tag to


the "2" in ur size tag allows the text to be resized which is causing u issues... (ur tag)

2007-02-21 08:17:15 · answer #1 · answered by Ody 3 · 0 0

Define the following style in a .css
table.Default {
font-family: verdana;
font-size: 12px;
color: #000000;
}


2007-02-21 08:17:39 · answer #2 · answered by Anonymous · 0 0

The style you defined will only apply to the paragraph (p) tag. Within this style, add table {font-size: 12px; verdana} Doing so should set the font for all tables.

2016-05-24 04:01:27 · answer #3 · answered by Anonymous · 0 0

fedest.com, questions and answers