음악, 삶, 개발

div 로 원그리기 : border-radius 속성 본문

개발 Web/HTML & CSS

div 로 원그리기 : border-radius 속성

Lee_____ 2020. 11. 30. 04:58

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

  width : 100px;
  height : 100px;
  border-radius: 50%;
  background-color: tomato;

}