/* EMPLOYEES TABLE */ /* BOTH parts of employees table */ .wrap_employees { white-space: nowrap; /* prevent word wraps */ font-size: 0.7em; /* making the font smaller */ } /* FIXED part of employees table */ .wrap_employees_fixed { float: left; /* make it apper to the left of the scrolling part */ } /* SCROLLING part of employees table */ .wrap_employees_scrolling { overflow-x: scroll; /* do the scrolling magic*/ } /* Opera browser Hack */ .wrap_employees th { height: 2.3em; /* pevents table headers have different height */ }