Create a webpage with CSS Box Model:
<!DOCTYPE html>
<html>
<head>
<title>Box Model</title>
<style>
.style {
width: 350;
height: 250px;
padding: 10px;
border: 10px solid gray;
margin: 0px 15px;
background-color: lightblue;
overflow-y: scroll;
}
</style>
</head>
<body>
<div class='style'>
<p>Hello World</p>
</div>
</body>
</html>
Get Answers For Free
Most questions answered within 1 hours.