[Solved] Copy image CSS from another website


Here is the css you want to add to make that photo round and small

.client-pic {
  width: 80px; 
  height: 80px; 
  border-radius: 50%;
}

Tip for the future, if you want to scrape code off of other websites, use inspect element browser feature to get to css used on any specific element.

solved Copy image CSS from another website