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

CSS 오버플로:숨김

<시간/>

값이 숨김인 CSS 오버플로 속성에서 , 오버플로가 잘립니다. 내용이 숨겨져 있습니다. 다음 코드를 실행하여 CSS overflow:hidden을 구현할 수 있습니다. 속성 -

예시

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            background-color: orange;
            width: 250px;
            height: 35px;
            border: 2px solid blue;
            overflow: hidden;
         }
      </style>
   </head>
   <body>
      <h1>Heading</h1>
      <div>Overflow property used here. This is a demo text to show the working of CSS overflow: hidden. This hides the content.</div>
   </body>
</html>

출력

CSS 오버플로:숨김