“сделать круг в CSS” Ответ

CSS Circle


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

сделать круг в CSS

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

/*
	note: 
	should width = height
*/
Fair Flatworm

Круг CSS

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

Как создать круг с CSS

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

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

рисовать круг с CSS

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

CSS Circle

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

Ответы похожие на “сделать круг в CSS”

Вопросы похожие на “сделать круг в CSS”

Больше похожих ответов на “сделать круг в CSS” по CSS

Смотреть популярные ответы по языку

Смотреть другие языки программирования