Skip to content

Instantly share code, notes, and snippets.

@albinotonnina
Created March 20, 2016 16:40
Show Gist options
  • Save albinotonnina/bd99acd6845ed9788114 to your computer and use it in GitHub Desktop.
Save albinotonnina/bd99acd6845ed9788114 to your computer and use it in GitHub Desktop.
CSS dimension properties
<div>CONTENT</div>
div {
background: yellow;
color: red;
width: 500px;
/* width: 80%; */
/* width: 20cm; */
/* width: 20em; */
height: 200px;
}
/* demo styles */
* {
box-sizing: border-box;
}
body{
height:2000px;
}
body {
font-family: helvetica;
font-size: 28px;
margin: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment