CSS Height and Width:-
Code Family
Code Family
<!DOCTYPE html>
<html>
<head>
<style>
div {
  height: 200px;
  width: 50%;
  background-color: powderblue;
}
</style>
</head>
<body>
<h2>Code Family</h2>
<p>Code Family</p>
<div></div>
</body>
</html> 
<!DOCTYPE html>
<html>
<head>
<style>
div {
  max-width: 500px;
  height: 100px;
  background-color: powderblue;
}
</style>
</head>
<body>
<h2>Code Family</h2>
<p>Code Family</p>
<div></div>
<p>Code Family</p>
</body>
</html>