« Web, HTML, Tech Forum

does anybody know how to make square images turn into "squircle's" on the profile page

Posted by spirit!

posted

Forum: Web, HTML, Tech

im kinda new to all of this css and html customization stuff and ive seen people do this thing where they have square images rounded off at the corners and i was wondering how i could do that for all of the images on my page. (mainly because i want my avatar to not have the white corners on it anymore).


Report Topic

1 Reply

Reply by Marc aka Trogy

posted

Here you go 

<style>
.profile-pic {
  border-radius: 5px;
  overflow: hidden;
}
</style>


Permalink Report Reply