CSS Tips
/* padding does not affect the width */
* {
box-sizing:border-box;
-moz-box-sizing:border-box;
-webkit-box-sizing:border-box;
}
/* placeholder */
.placeholder {
text-indent: 100%;
overflow: hidden;
white-space: nowrap;
display: block;
}