2018-10-12 15:37:13 -04:00
---
title: Change the Font Size of an Element
---
2019-07-24 00:59:27 -07:00
# Change the Font Size of an Element
2018-10-12 15:37:13 -04:00
2019-07-24 00:59:27 -07:00
---
## Problem Explanation
2018-10-17 15:21:37 +04:00
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
2019-07-24 00:59:27 -07:00
**Example:**
2018-10-12 15:37:13 -04:00
2018-10-17 15:21:37 +04:00
```css
h1 {
font-size: 30px;
}
```
2019-07-24 00:59:27 -07:00
---
## Solutions
< details > < summary > Solution 1 (Click to Show/Hide)< / summary >
2018-10-17 15:21:37 +04:00
```css
p {
font-size: 16px;
}
```
2019-07-24 00:59:27 -07:00
< / details >