Computer >> 컴퓨터 >  >> 프로그램 작성 >> CSS

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>