Multiple CSS increases productivity of hiding and showing with display attribute
With the prevalence of DHTML, much less AJAX, I have begun to use separate Cascading Style Sheets for development and publishing. Since styles override each other, the easiest way to accomplish this is to add a second style sheet link after the publishing CSS link and comment it out when one wants to test the page.
?¢‚Ǩ?ìdev.css?¢‚Ǩ¬ù contains ?¢‚Ǩ?ìdisplay: block;?¢‚Ǩ¬ù within all classes that in the publishing CSS contain ?¢‚Ǩ?ìdisplay: none;
?¢‚Ǩ¬ù much like that below:
.profile_box { display: none;} (index.css)
.profile_box { display: block; } (dev.css)
Further Reading on HTML and CSS
- CSSsprite: Photoshop script combines two images for CSS hover
- Features and characteristics of a great 404 error page
- Change media and images to full size in WordPress media gallery
Further Reading on Productivity
- CSSsprite: Photoshop script combines two images for CSS hover
- Secondary Browser: I've been using Chrome for months
- Create reading list in WordPress from Amazon Wish List using Yahoo! Pipes





