24 lines
459 B
HTML
24 lines
459 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
.container {
|
|
width: 100px;
|
|
height: 50px;
|
|
background-color: lightgray;
|
|
overflow: hidden;
|
|
}
|
|
.content {
|
|
width: 200px;
|
|
height: 100px;
|
|
background-color: red;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="content">This text should be clipped</div>
|
|
</div>
|
|
</body>
|
|
</html>
|