Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to add image border-radius in github pages

Tags:

html

css

I am using github pages to create a portfolio blog with Jekyll theme and i want to set image border-radius to circle and i can't figure out to do that.This is what i have tried and nothing is happening to image. here is my code

  <a href="url"><img src="https://desmond75.github.io/img/IMG_20171214_095012.jpg" height="auto" width="200" style="border-radius:50%"></a>

i don't know if there is a way of doing this, i need help thanks in advance

like image 800
ade desmond Avatar asked Jul 20 '18 05:07

ade desmond


1 Answers

This works

  <a href="url"><img src="https://desmond75.github.io/img/IMG_20171214_095012.jpg" height="auto" width="200" style="border-radius:50%"></a>
like image 158
ade desmond Avatar answered Nov 12 '22 00:11

ade desmond