체크박스 디자인-2 (checkbox Design-2 with CSS)
체크박스 디자인 2 기본 체크박스로 활용할 수 있다. ✔️ HTML ✔️ CSS .cbxBox { position: relative; left: 50%; } .box { display: flex; align-items: center; } .box input[type="checkbox"] { position: relative; height: 35px; width: 35px; appearance: none; background-color: #FFF; border-radius: 10px; cursor: pointer; overflow: hidden; } .box input[type="checkbox"]::after { content: ''; display: block; height: 15px; width: 8..
2023. 5. 21.