Skip to content

Instantly share code, notes, and snippets.

@AndyNovo
Created January 5, 2016 21:49
Show Gist options
  • Save AndyNovo/6658b6d4ba473bcb70f1 to your computer and use it in GitHub Desktop.
Save AndyNovo/6658b6d4ba473bcb70f1 to your computer and use it in GitHub Desktop.
box model basics
/* box model basics */
div {
background-color: #aaa;
display: block;
outline: 5px dashed white;
margin: 50px;
border: 30px solid hsla(2000,100%,50%, .4);
padding: 10px;
background-clip: padding-box;
}
body {
background: url("https://image-gr.s3.envato.com/files/64685809/Green%20Lawn%20Wallpaper%20L.jpg");
}
p {
background-color: blue;
}
<div>This is some content.</div>
<div>Some other content</div>
<p>Other Stuff Here</p>
// alert('Hello world!');
{"view":"separate","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment