score:3

Accepted answer

that's the cascade in css in effect. some other rule is overriding your border radius.

for more details see https://www.w3.org/tr/2011/rec-css2-20110607/cascade.html#cascade

what you can do is either change .about-profile to be more "specific", or use !important to override the other rules. i suggest the former.

score:0

you can use this:

border-radius: 50%!important;

score:0

some style override this code so use !important

.about-profile {
  display: block;
  width: 260px;
  height: 260px;
  border-radius: 50%;
}

Related Query

More Query from same tag