Results: 1022
All corners are rounded:
.rounded {
    border-radius: 10px;
}
Only bottom corners are rounded:
.bottom_rounded {
    border-radius: 0 0 10px 10px;
}
Perfectly circled box:
.circle {
    width: 200px;
    height: 200px;
    border-radius: 100px;
    line-height: 200px;
}
Direction rule: top-left, top-right, bottom-right, bottom-left
Stretches the lines so that each line has equal width
An element with
position: relative;
is positioned relative to its normal position. The element will not push any of the content around it.
h1 {
  text-shadow: 3px 0px 3px #ccc;
}
text-shadow: h-shadow v-shadow blur-radius color|none|initial|inherit;
When two margins are touching, the larger of the two margins is used
#header h1 {
    background: url(../images/bg.jpg) top left no-repeat;
    width: 702px;
    height: 100px;
    text-indent: -9999px;
}
#body {
    background: url(../images/bg.jpg) top left repeat-y;
}
div p {
  background-color: yellow;
}
Selects all
<p>
elements inside
<div>
elements
Error: CSS: width: only 0 can be a unit. You must put a unit after your number
<td style="width:32">
Results: 1022