Search for
in snippet title/description
in snippet text
Browse Code
Add-Ins
Blog
Language Feeds
Service Stats
FAQs
Feedback
About
Manage Your Code
Login
Register
Snippet: CSS rule for table render (CSS)
Title:
CSS rule for table render
Language:
CSS
Description:
Rule to define if a table changes due to content or if it's columns width stays constant.
Views:
344
Author:
Nelson Rocha
Date Added:
3/31/2008
Copy
Code
.fixed_table { table-layout: fixed; } .auto_table { table-layout: auto; }
.fixed_table { table-layout: fixed; } .auto_table { table-layout: auto; }
Usage
XHTML Table render
Notes
Using ~fixed~ improves browser performance.