-Box-L1-
-HTML-
BOX1
BOX2
BOX3
-CSS-
* { margin: 0; padding: 0; } body { background: url(images/bg20.png); font-size: 20px; } div { width: 200px; margin: 20px; padding: 10px; background: white; text-align: center; } p { line-height: 100px; } /* 個別set */ p:first-of-type { background: olive; } p:nth-of-type(2) { background: tomato; } p:last-of-type { background: beige; }