If I'm working with an HTML document, and I'm trying to figure out what styles I want to keep active, what is the best way to deactivate certain styles in the CSS document? Is there a technique where I can deactivate them, and come back to activate them later? Something similar to commenting out code, but perhaps less time consuming?
i would say in the actual coding process theres just the commenting out, however if you use firefox and have an addon called webdeveloper, currently version 1.1.9 that allows you to turn on and off styling elements in the css.
yeah but those x's will catch up to you if you're not using an editing program that catches mistakes when you're finally done with your site. For example till about a month ago i swore by notepad since that is the only program besides photoshop that I have used in my study of web development, but a single solitary x somewhere could send me searching for hours.
@furrball1383 Notepad works, but you should try some better tools. notepad++ and notepad2 are both good, though I prefer notepad++. Sorry for the off-topic.
Thanks,
Marty
This works well for me :)
Or if you wanted to remove the entire div:
Notepad works, but you should try some better tools. notepad++ and notepad2 are both good, though I prefer notepad++. Sorry for the off-topic.
@Dolatron
Say you have this style:
and you want to see how it looks without the border-radius. To do that, just do this:
The starts a comment, and the ends it.