Home
Manage Your Code
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;
}
Usage
XHTML Table render
Notes
Using ~fixed~ improves browser performance.