【CSS】border-radius
border-radius
둥근 모서리
모서리를 둥글게하는 것은 뭐야? ?
라는 느낌입니다만, 그림을 봐 주면 일목요연합니다
그림과 같이 모서리가 둥글게됩니다
예.html <div class="square">
<p>四角でーす</p>
</div>
<div class="corners">
<p>角丸でーす</p>
</div>
예.css.square {
width: 150px;
height: 100px;
background-color: orange;
text-align: center;
}
.corners {
width: 150px;
height: 100px;
background-color: orange;
text-align: center;
border-radius: 30px;
위에서는 border-radius: 30px; 로 지정했지만
숫자를 50px로 지정하면 ...
30px에 비해 더 둥근 모서리
... 이번에는 10px로 숫자를 줄이면
아까에 비해 뿔이 버렸습니다
즉 ...
숫자가 커질수록 모서리는 둥글다는 것을 알았습니다
Reference
이 문제에 관하여(【CSS】border-radius), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/mikimikiman/items/6ecf21e4e31380ce4591
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
<div class="square">
<p>四角でーす</p>
</div>
<div class="corners">
<p>角丸でーす</p>
</div>
.square {
width: 150px;
height: 100px;
background-color: orange;
text-align: center;
}
.corners {
width: 150px;
height: 100px;
background-color: orange;
text-align: center;
border-radius: 30px;
Reference
이 문제에 관하여(【CSS】border-radius), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/mikimikiman/items/6ecf21e4e31380ce4591텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)