d2

Data utworzenia: 2024-12-17 07:42:00
*{ box-sizing: border-box; margin: 0; padding: 0; } body{ background-color: black; } section{ position: relative; margin-top: 200px; margin-bottom: 50px; height: 300px; background-color: grey; } .square{ height: 100px; width: 100px; border: 2px solid black; } .red{ background-color: red; position: absolute; top: 0; left: 0; } .blue{ background-color: blue; position: absolute; top: 0; left: 100px; } .lime{ background-color: lime; position: absolute; top: 0; left: 200px; } .gold{ background-color: gold; position: absolute; bottom: 0px; right: 0px; } .silver{ background-color: silver; position: absolute; bottom: 100px; right: 0px; } .black{ background-color: black; }
Powrót