| <!DOCTYPE html> |
| <html> |
| <head> |
| <style> |
| #shape-inside { |
| width: 170px; |
| height: 280px; |
| padding: 15px 20px 5px 10px; |
| position: relative; |
| } |
| #border { |
| position: absolute; |
| top: 13px; |
| left: 8px; |
| width: 170px; |
| height: 280px; |
| border: 2px solid blue; |
| } |
| p { margin-top: 0; } |
| </style> |
| </head> |
| <body> |
| <div id="shape-inside"> |
| <div id="border"></div> |
| <div> |
| <p>Paragraph 1. This paragraph should be just below the top edge of the blue |
| rectangle. It's left and right edges should be within the blue rectangle. |
| </div> |
| <p>Paragraph 2. This paragraph should be just below paragraph 1. Its left |
| and right edges should also be within the blue rectangle. |
| </div> |
| </body> |
| </html> |