Answers for "css code to add an icon at the top corner of a circle"

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

icon rounded corners css

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

}
Posted by: Guest on August-25-2021
0

icon rounded corners css

<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 August-25-2021

Code answers related to "css code to add an icon at the top corner of a circle"

Browse Popular Code Answers by Language