Horje
css circle border Code Example
css circle

    #circle {
      width: 100px;
      height: 100px;
      background: red;
      border-radius: 50%
    }
  
css circle border
.circle {
    background-color:#fff;
    border:1px solid red;    
    height:100px;
    border-radius:50%;
    -moz-border-radius:50%;
    -webkit-border-radius:50%;
    width:100px;
}
<div class="circle"></div>
how to make borders rounded in css
#rcorners {
  border-radius: 25px;
}
create circle border css
#div2{
    width: 150px;
    height: 150px;
    border: 3px solid #05ffb0;
    border-radius: 50%;
    padding: 20px;
    text-align: center;
}




Css

Related
unknown function 'mat-palette' Code Example unknown function 'mat-palette' Code Example
ignore cache pip Code Example ignore cache pip Code Example
symfony version check Code Example symfony version check Code Example
screen rotation in css Code Example screen rotation in css Code Example
how to add a black border around text css Code Example how to add a black border around text css Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11