for CSS only? -


Is it possible to turn CSS into parts of the page? I & lt; Noscript & gt; , but it also launches javascript ...

The problem is that there are so many global styles for many elements on my page, and now I need it To add new people (lots of new people), and I can not go from one to 1000 elements and change them ...

Is it possible that you can not change one by one Done >

In addition, font-size: 70% scaling, and I can not overwrite my code ...

How can I stop it? & lt; Noscript & gt; Something like but only for css?

& lt; Noscript & gt; Javascript does not close, this code returns only JavaScript that is turned off.

I am not completely clear what you are saying here It seems that means that you have to apply a very different style in some new pieces in some of your pages. Want to If they are in continuous block then you can put them in a diva, and use it in your new style. As you say:

CSS:

  P {color: green; Font-family: serif;} a {color: blue;} / * multiple and many other announcements * /   

html:

  ; P & gt; Here's a paragraph, there are lots of it & lt; / P & gt; & Lt; P & gt; This is a paragraph in the new style, there is a lot to it! & Lt; / P & gt;   

Then you can do this:

CSS:

  P {color: green; Font-family: serif;} a {color: blue;} / * lots and many other announcements * / .newStyle p {color: black; Font-family: sans-serif;} .newStyle one {color: red;} / * many and other announcements * /   

html:

  & Lt; P & gt; This is a paragraph, there are lots of it & lt; / P & gt; & Lt; Div class = "newStyle" & gt; & Lt; P & gt; This is a paragraph in the new style, there is a lot to it! & Lt; / P & gt; & Lt; / Div & gt;    

Comments