“Круг 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 Circle

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

Создать круг в CSS

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

Ответы похожие на “Круг CSS”

Вопросы похожие на “Круг CSS”

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

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

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