Answers for "circle with icon inside css"

CSS
0

icon inside a circle css

i {
  background-color: white;
  border-radius: 50%;
  border: 1px solid grey;
  padding: 10px;
}
Posted by: Guest on February-24-2021
0

call circle icon in html css

i.fa {
  display: inline-block;
  border-radius: 60px;
  box-shadow: 0px 0px 2px #888;
  padding: 0.5em 0.6em;

}
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" />
<i class="fa fa-wrench"></i>
Posted by: Guest on December-05-2020

Code answers related to "circle with icon inside css"

Browse Popular Code Answers by Language