hover시 박스의 색상과 글자 변경

CashCash·2020년 12월 21일
0

css

목록 보기
4/10
post-thumbnail

HTML


<div class="blank"></div>

css


.blank {
  width: 500px;
  height: 100px;
  background: orange;
  border-radius: 10px;
  text-align: center;
}

.blank::before {
  content: "orange";
  font-size: 2em;
  color: #fff;
  font-weight: bold;
}

.blank:hover {
  animation-play-state: paused;
  background: red;
}

.blank:hover::before {
  content: "red";
}


< 평상시 >


< hover시 >

profile
studying frontend

0개의 댓글