posted 19 days ago
Forum: HTML Group
View Topics View Profile
Hiya! Id like to make it so that, on my profile, the pictures in my friends space show up as stars. anyone know how i could pull this off? I've seen others do it too, so ik its possible :p
Report Topic
<style>
.friends-grid img{
width: 300px;
height: 300px;
object-fit: cover;
clip-path: polygon(
50% 0%,
61% 35%,
98% 35%,
68% 57%,
79% 91%,
50% 70%,
21% 91%,
32% 57%,
2% 35%,
39% 35%
);
}
</style>
Permalink Report Reply