« Web, HTML, Tech Forum

How do I add an image border to my profile picture?

I've been trying to look for ways to put this as my profile picture but somehow I can't find any ways that work. Is this even possible?


Report Topic

1 Reply

Reply by ◇怀念◇

posted

Uhh try this? This is the code that I used. I just copy and pasted this one and idk how it actually completely works so not sure if it'll also work the same for you


.general-about .profile-pic::before{

  content: '';

  background: url('insert link') no-repeat;

  background-size: cover;

  display: block;

  width:170px;

  height: 170px;

  z-index: 10;

  position: absolute;

  top: -7px;

  left: -4.5px;

}


Permalink Report Reply