Skip to content

Instantly share code, notes, and snippets.

p{
word-break: break-all;
}
div{
word-wrap: break-word;
word-break: normal;
}
p{
white-space: nowrap;
}
@willkan
willkan / pure css 100% height
Created September 19, 2013 09:22
pure css to realize 100% height
body,html{
height:100%;}
#outerbox{
width:100%;
position:absolute; /* to place it somewhere on the screen */
top:130px; /* free space at top */
bottom:0px;} /* makes it lock to the bottom */
#innerbox{