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

CSS 오버플로:표시

<시간/>

값이 보이는 CSS 오버플로 속성에서 오버플로가 잘리지 않습니다. 이것이 기본값입니다. 다음 코드를 실행하여 CSS overflow:visible을 구현할 수 있습니다. 속성:

예시

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

출력

CSS 오버플로:표시