How to change the font size of an element?

My code is correct but I believe the browser and text zoom is the problem. It asks me to set it to 100% and it is. I have tried every single size and still nothing.

<style>
.red-text {
color: red;
}
p {
font-size: 30px;
}
</style>

I’ve heard rumors of the Chrome browser having issues with zoom, but haven’t tested myself. Can you post a link to the challenge you are on and I’ll test myself?

Looking at your code this is what I see…

<style>
.red-text {  //select ALL items with class = 'red-text'
color: red;
}
p { //select ALL items P items
font-size: 30px;
}
</style>

Maybe the challenge to select all p items with class red-text ?

It’s alright I realised my small brain mistake. I had it set to 30px not 16px. Thank you for the offer I really appreciate it.