Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Deactivating Styles? Re: Deactivating Styles?

#82515
markthema3
Participant

@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.


@Dolatron

Say you have this style:


#example {
width: 90%;
margin: 1%;
background-color: #333333;
color: #cccccc;
border-radius: 15px;
}

and you want to see how it looks without the border-radius. To do that, just do this:


#example {
width: 90%;
margin: 1%;
background-color: #333333;
color: #cccccc;
/*
border-radius: 15px;
*/
}

The

/*

starts a comment, and the

*/

ends it.