CSS: No Resize

JavaScript and client side scripting.

Moderator: General Moderators

Post Reply
gavinbsocom
Forum Commoner
Posts: 71
Joined: Tue Sep 30, 2003 9:51 pm

CSS: No Resize

Post by gavinbsocom »

Is there a way to make a table have no resize using css?
User avatar
JAM
DevNet Resident
Posts: 2101
Joined: Fri Aug 08, 2003 6:53 pm
Location: Sweden
Contact:

Post by JAM »

Code: Select all

table {
 width: 200px; /* lock width */
 height: 100px; /* lock height */
 border: 1px solid #000000; /* just to actually see it */
}
Sounded like a to-easy answer. Is this what you wanted?
gavinbsocom
Forum Commoner
Posts: 71
Joined: Tue Sep 30, 2003 9:51 pm

Post by gavinbsocom »

I figured it out, thanks, but no that wouldnt work, cuase the pixels still resize....depending on the viewers screen resolution
User avatar
twigletmac
Her Royal Site Adminness
Posts: 5371
Joined: Tue Apr 23, 2002 2:21 am
Location: Essex, UK

Post by twigletmac »

It'll never be exactly the same on all users browsers...

Mac
m3rajk
DevNet Resident
Posts: 1191
Joined: Mon Jun 02, 2003 3:37 pm

Post by m3rajk »

nor monitors
Post Reply