CSS battle 26/9/2025
tahmid131
html
10 months ago
455 B
29
Indexable
<div class="b"></div>
<div class="b t1"></div>
<div class="b t2"></div>
<div class="b t1 t2 t3"></div>
<style>
* {
background: #4763B1;
}
.b {
position: absolute;
height: 80;
width: 80;
top: 50;
left: 100;
background: #FFFFFF;
box-shadow: 0 -20px;
}
.t1 {
transform: rotate(90deg);
left: 220;
}
.t2 {
transform: rotate(-90deg);
top: 170;
}
.t3 {
transform: rotate(180deg);
}
</style>Editor is loading...
Leave a Comment