author | Lando <lando@lando.test> |
Fri, 11 Jul 2025 16:34:42 +0000 (57 minutes ago) | |
changeset 796119 | 507aed88eb5a92e2e77286f3242050fac00a8201 |
parent 764412 | 7c25cc7f34e4d1c99193e905db0fe567b0aca59a |
permissions | -rw-r--r-- |
<!DOCTYPE html> <style> .container { width: 100px; height: 100px; background-color: green; position: absolute; left: 10px; top: 10px; } .child { width: 10px; height: 10px; background-color: blue; left: 150px; position: absolute; } </style> <body> <div class="container"> <div class="child"></div> </div> </body> </html>