siusiakbajs
Data utworzenia: 12-11-2024 08:02:40
*{ margin: 0; padding: 0; box-sizing: border-box; } body{ font-size: 2rem; background-color: beige; } .box{ width: 100px; height: 100px; background-color: brown; border: 2px solid white; box-shadow: 0 0 15px wheat; margin: 10px; } .container{ position: relative; } .x1{ position: absolute; background-color: rgb(100, 16, 126); top: 50px; } .x2{ position: absolute; background-color: rgb(54, 146, 153); top: 400px; } .x3{ position: absolute; background-color: rgb(146, 23, 23); top: 50px; left: 400px; } .x4{ position: absolute; background-color: rgb(12, 192, 87); top: 400px; left: 400px; } .x5{ position: absolute; background-color: chocolate; top: 250px; left: 200px; }