:Polarnacht 툴팁/styles.css

Marine418 (토론 | 기여)님의 2023년 7월 10일 (월) 22:44 판
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)
.tooltip-test {
	position: relative;
	text-decoration: underline dotted;
	cursor: help;
}
.tooltip-test-text {
	position: absolute;
	z-index: 9999;
	display: none;
	min-width: 400px;
	top: 100%;
	left: 50%;
	border: 1px solid #565553;
	background: #0E0E0F;
	padding: 1em;
}
.tooltip-test:hover .tooltip-test-text {
	display: inherit;
}
.tooltip-test-text:hover {
	cursor: default;
}