Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

CSS

Peter Jonsson
Peter Jonsson
1,856 Points

CSS class "section-title" for Uppercase does not produce result, that is nothing changes after update !

,,, file resume.html <!DOCTYPE html> <html>

<head> <title> Peter Jonssons CV </title>

<link rel="stylesheet" href="resume.css">

</head> <body> <img src="https://placeimg.com/200/200/tech" alt="picture of tech" class="main-image"> <h1> CV eller Resume </h1> <h2 class:"section-title"> Peter Jonsson, Web developper </h2> <h3> List of experiences</h3> <ul> <li> Master of science</li> <li> Intro to HTML and CSS</li> <li> Quality Manager, TvΓ€rbanan</li> </ul> <h2 class:"section-title"> education </h2> <h2 class:"section-title"> employment </h2>

,,, ,,,file resume.css

.section-title { text-transform:uppercase; }

2 Answers

Martin Sole
Martin Sole
82,199 Points

You've used a colon when declaring the class in the html instead of the equals sign, should be class="section-title"

Peter Jonsson
Peter Jonsson
1,856 Points

2 hours of looking but could not see it. Thanks. At least i got to know the COPEN tool which seems like a great thing.