:1961 툴팁/styles.css

아바투르너마저 (토론 | 기여)님의 2023년 10월 3일 (화) 02:03 판 (새 문서: .tooltip { display: inline-block; color: #dd0000; font-weight: bold; } .tooltip-text { display: none; position: absolute; max-width: 200px; border: 1px solid; border-r...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)
.tooltip {
  display: inline-block;
  color: #dd0000;
  font-weight: bold;
}
.tooltip-text {
  display: none;
  position: absolute;
  max-width: 200px;
  border: 1px solid;
  border-radius: 5px;
  padding: 5px;
  font-size: 0.8em;
  color: white;
  background: #222;
}
.tooltip:hover .tooltip-text {
  display: block;
}