csssssssss
Data utworzenia: 12-11-2024 08:06:56
* { box-sizing: border-box; margin: 0; padding: 0; } body { background-color: rgb(255, 255, 255); } .box{ width: 100px; height: 100px; background-color: white; border: 2px solid #fff; box-shadow: 0 0 15px wheat; margin: 10px; /* position: absolute; */ } .container { position: relative; width: 1000px; height: 1000px; /* background-color: #222; */ } .box1 { /* position: absolute; */ top: 0; left: 0; background-color: aqua; } .box2 { /* position: absolute; */ top: 50%; left: 50%; } .box3 { /* position: absolute; */ top: 0; right: 0; } .box4 { /* position: absolute; */ bottom: 0; left: 0; background-color: red; } .box5 { /* position: absolute; */ bottom: 0; right: 0; }