Files

30 lines
473 B
Markdown
Raw Normal View History

2018-10-12 15:37:13 -04:00
---
title: Change the Font Size of an Element
---
# Change the Font Size of an Element
2018-10-12 15:37:13 -04:00
---
## Problem Explanation
We need to create an entry for ```p``` elements and set the ```font-size``` to 16 pixels (```16px```), Inside the same ```<style>``` tag that contains your ```red-text``` class.
2018-10-12 15:37:13 -04:00
**Example:**
2018-10-12 15:37:13 -04:00
```css
h1 {
font-size: 30px;
}
```
---
## Solutions
<details><summary>Solution 1 (Click to Show/Hide)</summary>
```css
p {
font-size: 16px;
}
```
</details>