Skip to content

Instantly share code, notes, and snippets.

@devloprs
Last active February 20, 2017 06:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save devloprs/8b682303ebf214c0ed0bc9553235c626 to your computer and use it in GitHub Desktop.
Save devloprs/8b682303ebf214c0ed0bc9553235c626 to your computer and use it in GitHub Desktop.
Learn Beaver Builder nomenclature in css
#id //create the container and apply container wide style for everything contained within
definition:xxx;
//modify something within the container but not effect anything else site wide.
.id.class-1{
definition:xxx;
}
//modify a single html tag within the container
.id.class-1.element
{
//do it as many times as you need to for as many things as you need to
definition:xxx;
}
//do it as many times as you need to for as many things as you need to
.id.class-2{
proerty:xxx;
}
//do it as many times as you need to for as many things as you need to
.id.class-2.element
{
//use advanced css methods to filter or argue about property values
definition:xxx, possible-modifier, possible-arugment;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment