HTML CSS examples for CSS Layout:Responsive Media
Combine @media queries to change dynamically css
<!doctype html> <html> <head> <meta name="robots" content="noindex,nofollow"> <style> @media screen and (max-width: 1024px) { thead {<!-- w ww.ja va2 s. c o m--> visibility:hidden; } } </style> </head> <body> <table id="demoTable"> <thead> <tr id="stayontop"> <th>Lorem</th> <th>Lorem</th> <th>Lorem</th> <th>Lorem</th> </tr> </thead> </table> </body> </html>