HTML
CSS
PHP
Deno
Examples
Do It Yourself
Blog
Type in your code below
Run
<!DOCTYPE html> <html lang="en"> <head> <style type="text/css"> .pos_illus { width: 100px; height: 100px; line-height: 100px; background: rgb(175, 213, 252); border: solid 1px #39F; position: absolute; text-align: center; font-size: 50px; color: #39F; } #posit ol, #posit ul, #posit li, #posit dl { margin: 0; padding: 0px; list-style-position: inside; } #posit { height: 160px; background-color: #3AF; } </style> </head> <body> <div id="posit"> <div class="pos_illus" style="left: 30px; top: 20px;"> </div> <div class="pos_illus" style="left: 40px; top: 30px;"> </div> <div class="pos_illus" style="left: 50px; top: 40px;"> 3 </div> </div> </body> </html>