Overflow Property
.container {
width: 200px;
height: 100px;
border: 1px solid black;
overflow: visible;
}.container {
width: 200px;
height: 100px;
border: 1px solid black;
overflow: hidden;
}Last updated
.container {
width: 200px;
height: 100px;
border: 1px solid black;
overflow: visible;
}.container {
width: 200px;
height: 100px;
border: 1px solid black;
overflow: hidden;
}Last updated
.container {
width: 200px;
height: 100px;
border: 1px solid black;
overflow: scroll;
}.container {
width: 200px;
height: 100px;
border: 1px solid black;
overflow: auto;
}<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Overflow Property Examples</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed et nisi ut ipsum malesuada fringilla. Sed sit amet magna quis metus tincidunt feugiat.</p>
</div>
</body>
</html>