Search
 
SCRIPT & CODE EXAMPLE
 

CSS

css circle


    #circle {
      width: 100px;
      height: 100px;
      background: red;
      border-radius: 50%
    }
  
Comment

make a circle in css

div {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

/*
	note: 
	should width = height
*/
Comment

making a circle css

#circle {
  width: 100px;
  height: 100px;
  background: red;
  border-radius: 50%
}
Comment

css circle

.circle {
	aspect-ratio: 1/1;
	width: 30%;
	background: red;
	border-radius: 50%;
}
Comment

how to create a circle with css

<div id="circle">
</div>

#circle {
    width: 100px;
    height: 100px;
    background: red;
    border-radius: 50%
}
Comment

circle css

#circle {
  width: 100px;
  height: 100px;
  background: red;
  border-radius: 50%
}
Comment

drawing a circle with css

#it is the border-radius:50; that makes the circle.
.MyCircle{
  width:100px;
  height:100px;
  background-color:blue;
  border-radius:50px;
}
Comment

css circle

#circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
Comment

create circle in css

#div2{
    width: 150px;
    height: 150px;
    border: 3px solid #05ffb0;
    border-radius: 50%;
    padding: 20px;
    text-align: center;
}
Comment

PREVIOUS NEXT
Code Example
Css :: multi colors in background in css 
Css :: maxheight media query 
Css :: css flex wrap space between rows 
Css :: css grid row height with repeat 
Css :: how to underline font in css 
Css :: input uppercase with css 
Css :: display content in column css 
Css :: superscript css 
Css :: background image 
Css :: getting two scroll bars 
Css :: button highlight none css 
Css :: email background image 
Css :: css image size scale to fit 
Css :: image with background color css 
Css :: wordpress style.css 
Css :: tailwind center absolute 
Css :: css erase text 
Css :: css table th width 
Css :: bootstrap modal resize with jquery 
Css :: maximum length for input box 
Css :: css put background on top of another background image 
Css :: css %-px 
Css :: rounded left border tailwind css 
Css :: Trimming One Line with CSS 
Css :: css font-variant 
Css :: how to center icon vertically in react js 
Css :: button transparent using css 
Css :: wordpress https to localhost http 
Css :: ease in out 
Css :: flex-flow 
ADD CONTENT
Topic
Content
Source link
Name
9+7 =