Log in

View Full Version : Resolved General CSS question



theremotedr
02-15-2016, 06:28 PM
Im looking through my css file to take note which colour codes actually change what on my site.
I would like to know if & how i can write next to the code so its only shown in the css file and not on the site.

Example
I can write main mebu fine

/*MAIN MENU*/
.menu-toggle{
display:block;
padding:10px;
margin:1px 0 0;
background:#0099FF;

But some have a few colours in the code so i would like to write it next to the code.
Example.


background:#0099FF; SO I CAN PUT IT HERE
border: 2px solid #000000; SO I CAN PUT IT HERE
color:#000000; SO I CAN PUT IT HERE


Currently if i use the main menu approach next to the code its shown on the site.

Thanks

styxlawyer
02-15-2016, 06:36 PM
They are called "Comments". Go to this page (http://www.w3schools.com/css/css_syntax.asp) and scroll down to the bottom.

theremotedr
02-16-2016, 11:29 AM
Thanks.
Just w was looking for.