--- id: 587d7791367417b2b2512ab5 title: Adjust the Height of an Element Using the height Property challengeType: 0 videoUrl: '' localeTitle: 使用height属性调整元素的高度 --- ## Description
您可以使用CSS中的height属性指定元素的height ,类似于width属性。这是一个将图像高度更改为20px的示例:
img {
身高:20px;
}
## Instructions
height属性添加到h4标记并将其设置为25px。
## Tests
```yml tests: - text: 您的代码应将h4 height属性更改为25像素的值。 testString: 'assert($("h4").css("height") == "25px", "Your code should change the h4 height property to a value of 25 pixels.");' ```
## Challenge Seed
```html

Google

Google was founded by Larry Page and Sergey Brin while they were Ph.D. students at Stanford University.

```
## Solution
```js // solution required ```