대답: 버튼 전환을 위한 텍스트 열기 및 끄기 추가 방법: 버튼 전환을 위한 텍스트 열기 및 끄기 추가 방법

1232 단어

답장: 전환 단추에 텍스트 '열기' 와 '닫기' 를 추가하는 방법


2016년 10월 4일.
87

너는 이렇게 할 수 있다.
.switch {
  position: relative;
  display: inline-block;
  width: 90px;
  height: 34px;
}

.switch input {display:none;}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ca2222;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height:

Open Full Answer

좋은 웹페이지 즐겨찾기