버튼 디자인-1 (button Design-1 with CSS)
버튼 디자인 1 여러개의 버튼이 같은 레벨에 있어야할 때 사용할 수 있다. ✔️ HTML Button delete Button save Button done ✔️ CSS .buttonBox { display: flex; width: 100%; height: 50px; } .buttonBox .button { flex: 1; color: #aaa; background: #fff; border-right: 1px solid #ccc; font-size: 17px; text-align: center; line-height: 50px; transition: all 0.5s ease-in-out; text-decoration: none; } .buttonBox .button:last-child { border: ..
2023. 4. 26.