2017-10-21 16 views

답변

0

당신은 어쩌면 자신의 앱 스토어에서 위 블리에 응용 프로그램을 추가 할 수 있습니다,하지만 당신은이를 사용

<style> 
 
.tooltip { 
 
    position: relative; 
 
    display: inline-block; 
 
    border-bottom: 1px dotted black; 
 
} 
 

 
.tooltip .tooltiptext { 
 
    visibility: hidden; 
 
    width: 120px; 
 
    background-color: black; 
 
    color: #fff; 
 
    text-align: center; 
 
    border-radius: 6px; 
 
    padding: 5px 0; 
 
    position: absolute; 
 
    z-index: 1; 
 
} 
 
.tooltip .tooltiptext { 
 
    width: 120px; 
 
    bottom: 100%; 
 
    left: 50%; 
 
    margin-left: -60px; 
 
} 
 

 
.tooltip:hover .tooltiptext { 
 
    visibility: visible; 
 
} 
 
</style> 
 

 
<center> 
 
<br><br> 
 
<div class="tooltip">Word 
 
    <span class="tooltiptext">More words</span> 
 
</div> 
 
</center>
그냥 전체를 복사하고 "말씀"과 "더 많은 단어를"변경합니다. 팝업 상자를 다른 곳으로 만들고 싶다면 다른 사람에게 알려주세요.

+0

감사합니다. 나는 –

+0

@MattTyrrell 문제가 없습니다. – Blackmagyk

+0

어디에서 html 코드를 삽입할까요? –