CSS 오버플로:자동 , overflow와 달리 필요할 때만 스크롤바를 추가합니다. :스크롤 . CSS 오버플로를 구현하기 위해 다음 코드를 실행할 수 있습니다. auto 속성:
예시
<!DOCTYPE html>
<html>
<head>
<style>
div {
background-color: orange;
width: 250px;
height: 45px;
border: 2px solid blue;
overflow: auto;
}
</style>
</head>
<body>
<h1>Heading</h1>
<div>Overflow property used here. This is a demo text to show the working of CSS overflow: auto. This won't hide the content. A scrollbar would be visible, only if needed.</div>
</body>
</html> 출력
