border 속성에 대해 알아보자
표현 방법
border-top, border-right, border-bottom, border-left
border: 5px -> 4면 모두 5px
border: 5px 10px -> top, bottom은 5px, right, left은 10px
border: 5px 10px 7px -> top은 5px, right, left는 10px, bottom은 7px
border: 5px 10px 7px 8px
border-style: 보더 선 스타일
- dashed
border-style: dashed;

- dotted
border-style: dotted;

- solid
border-style: solid;

- double
border-style: double;

- groove
border-style: groove;

- ridge
border-style: ridge;

- inset
border-style: inset;

- outset
border-style: outset;

border-width: 보더 두께
- thin
border-width: thin;

- medium
border-width: medium;

- thick
border-width: thick;

border-radius: 보더 모서리 라운드
- radius
border-radius: 25px;
