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

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 :: css background offset 
Css :: div inline grid 100% width 
Css :: wp query using the_post 
Css :: wordpress theme my login redirect after login 
Css :: bootstrap cheat sheet 
Css :: creating drop shadow css 
Css :: space-evenly vs space-around 
Css :: border bottom under text only 
Css :: css textarea set max characters 
Css :: css outline width 
Css :: css hide mark border 
Css :: how to change svg image color on hover using css 
Css :: &:disabled not working sass 
Css :: mac input shadow 
Css :: overlay color on image css 
Css :: tailwind css installation 
Css :: add arrow in select css 
Css :: css before is not working 
Css :: linear gradient not covering entire page 
Css :: have unordered list horizontal css 
Css :: add background video to div css 
Css :: how to desactivate txt selection css 
Css :: remove or hide powered by text from Google Translate 
Css :: css set div width to screen 
Css :: center text in height css 
Css :: background center 
Css :: css to increase font size 
Css :: css scroll fixed content 
Css :: remove auto focus selected background color 
Css :: elementor ccs code for gradient 
ADD CONTENT
Topic
Content
Source link
Name
2+8 =