代码示例:(标识:css_dim_height_width_1)
<!DOCTYPE html>
<html>
<head>
<style>
div {
  height: 200px;
  width: 50%;
  background-color: powderblue;
}
</style>
</head>
<body>

<h1>设置元素的高度和宽度</h1>

<p>这个 div 元素的高度为 200 像素,宽度为 50%:</p>

<div></div>

</body>
</html>
运行结果: