CSS : 버튼을 꾸미는 Border-Style CSS /* 버튼 간격 설정 */ button { width: 100px; height: 100px; margin: 0px 5px 15px 0px; } /* 버튼 정렬하기 */ .buttonBox { display: flex; flex-direction: row; justify-content: center; } /* 하단부터 버튼 스타일링 */ .dotted { border-style: dotted; } .double { border-style: double; } .none { border-style: none; } .groove { border-style: groove; } .dashed { border-style: dashed; } .outset { b..