요소 위로 마우스를 가져갈 때 오버플로 콘텐츠를 표시하려면 다음 코드를 실행해 보세요.
Live Demo
<!DOCTYPE html> <html> <head> <style> div.demo { white-space: nowrap; width: 180px; overflow: hidden; border: 2px solid blue; } div.demo:hover { text-overflow: inherit; overflow: visible; } </style> </head> <body> <p>Hover to see the complete text below:</p> <br> <div class = "demo" style = "text-overflow:clip;">Demo Text that will hide in this box.</div> </body> </html>
위 내용은 CSS를 사용하여 요소 위로 마우스를 가져갈 때 넘치는 콘텐츠 표시의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!