Skip to content

Instantly share code, notes, and snippets.

@mattbrailsford
Created August 5, 2011 13:31
Show Gist options
  • Save mattbrailsford/1127544 to your computer and use it in GitHub Desktop.
Save mattbrailsford/1127544 to your computer and use it in GitHub Desktop.
Umbraco v5 CSS MetaData
/*
Name: Heading 1
*/
h1
{
color: #f00;
font-size: 2em;
}
/*
Name: Heading 2
*/
h2
{
color: #f00;
font-size: 1.2em;
}
/*
Name: Right
*/
.right
{
float: right;
}
@leekelleher
Copy link

Does it need to have the appropriate whitespace, or can it be put on a single line?

e.g. /* Name: Heading 1 */

@mattbrailsford
Copy link
Author

The whitespace ruling is pretty flexible so yes it can sit on 1 line, or over several.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment