편집 요약 없음 |
편집 요약 없음 |
||
8번째 줄: | 8번째 줄: | ||
z-index: 9999; | z-index: 9999; | ||
display: none; | display: none; | ||
min-width: | min-width: 400px; | ||
bottom: -300%; | bottom: -300%; | ||
left: 50%; | left: 50%; |
2023년 7월 9일 (일) 09:40 판
.tooltip-test {
position: relative;
text-decoration: underline dotted;
cursor: help;
}
.tooltip-test-text {
position: absolute;
z-index: 9999;
display: none;
min-width: 400px;
bottom: -300%;
left: 50%;
border: 1px solid #565553;
background: #0E0E0F;
padding: 1em;
}
.tooltip-test:hover .tooltip-test-text {
display: inherit;
}
.tooltip-test-text:hover {
cursor: default;
}