Skip to content

Instantly share code, notes, and snippets.

@npras
Created March 31, 2014 14:12
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 npras/9893175 to your computer and use it in GitHub Desktop.
Save npras/9893175 to your computer and use it in GitHub Desktop.
.one {
background: green;
}
.two {
background: red;
}
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="Div- standard block level element, Span - standard inline element" />
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
<div class="one">blah</div>
<div class="two">blah</div>
<span class="one">spanblah</span>
<span class="two">spanblue<span>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment