잔글편집 요약 없음 태그: 수동 되돌리기 |
편집 요약 없음 |
||
9번째 줄: | 9번째 줄: | ||
display: none; | display: none; | ||
min-width: 400px; | min-width: 400px; | ||
top: 100%; | |||
left: 50%; | left: 50%; | ||
border: 1px solid #565553; | border: 1px solid #565553; |
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;
}