Task 1
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Task 1</title>
<style>
body {
background-color: #fff;
color: #333;
font: 1.2em / 1.5 Helvetica Neue, Helvetica, Arial, sans-serif;
padding: 1em;
margin: 0;
}
.box {
border: 5px solid black;
padding: 1em;
height: 200px;
width: 300px;
overflow: auto;
}
</style>
</head>
<body>
<div class="box">
<p>
Veggies es bonus vobis, proinde vos postulo essum magis kohlrabi welsh onion daikon amaranth tatsoi tomatillo
melon azuki bean garlic.
</p>
<p>
Gumbo beet greens corn soko endive gumbo gourd. Parsley shallot courgette tatsoi pea sprouts fava bean collard
greens dandelion okra wakame tomato. Dandelion cucumber earthnut pea peanut soko zucchini.
</p>
</div>
</body>
</html>
Task 2
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Task 2</title>
<style>
body {
background-color: #fff;
color: #333;
font: 1.2em / 1.5 Helvetica Neue, Helvetica, Arial, sans-serif;
padding: 1em;
margin: 0;
}
.box {
border: 5px solid black;
height: 200px;
width: 300px;
overflow: hidden;
}
</style>
</head>
<body>
<div class="box">
<img src="images/flowers.jpg" alt="flowers">
</div>
</body>
</html>
도움 받은 곳
https://github.com/mdn/css-examples/blob/main/learn/tasks/overflow/marking.md
'CSS > MDN 문제 풀이' 카테고리의 다른 글
Test your skills: Sizing (0) | 2022.11.08 |
---|---|
Test your skills: Values and units (0) | 2022.11.08 |
Test your skills: Writing modes and logical properties (0) | 2022.11.07 |
Test your skills: Backgrounds and borders (0) | 2022.11.07 |
Test your skills: The box model (0) | 2022.11.06 |