ホームページ > 記事 > ウェブフロントエンド > CSSを使用して要素の上にマウスを置いたときにオーバーフローするコンテンツを表示する
要素の上にマウスを置いたときにオーバーフロー コンテンツを表示するには、次のコードを実行してみてください:
ライブ デモ
<!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 中国語 Web サイトの他の関連記事を参照してください。