Simultaneous Cross Plattform/Browser CSS Styling
Tired of having to refresh five different browsers everytime you make a change to your stylesheet while building a site? It sounds like a sales pitch, I know, but here’s a quick technique for setting up the browsers you are testing in to automatically reload your CSS while you work on it. The method involves a couple of meta tags added to the head of your working file:
<meta http-equiv=“Refresh” content=“10;
url=http://localhost/index.html”>
<meta http-equiv=“Pragma” content=“no-cache”;>
You’ll want to adjust the URL in the refresh line to the file you are working on, but other than that, not much else to it.
Leave a Comment