CSS: No Resize
Posted: Tue Oct 14, 2003 4:42 pm
Is there a way to make a table have no resize using css?
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Code: Select all
table {
width: 200px; /* lock width */
height: 100px; /* lock height */
border: 1px solid #000000; /* just to actually see it */
}