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 trialMUZ140007 Faith Ndlovu
6,119 Pointshow do you select class intro and set its font weight to bold
selecting class intro and setting its font weight to bold
<!DOCTYPE html>
<html>
<head>
<title>CSS Selectors</title>
<link rel="stylesheet" href="cc1-main-styles.css" type="text/css" media="screen">
<link rel="stylesheet" href="style.css" type="text/css" media="screen">
</head>
<body>
<h1><em>Hello</em> World!</h1>
<div id="main">
<p class="intro">
<em>Lorem ipsum dolor</em> sit amet, consectetur adipiscing elit. Nunc pulvinar consequat tortor, nec venenatis erat elementum scelerisque. Curabitur sit amet risus nisi. Aenean aliquet euismod augue at viverra. Ut varius arcu in lorem iaculis ullamcorper. Integer eu rutrum quam.
</p>
</div>
</body>
</html>
/* Complete the challenge by writing CSS below */
body {
background-color: lightblue;
}
h1 {
color: darkblue;
}
em {
color: red;
}
body {
font-weight: bold;
}
2 Answers
Cosmin Cioaclă
21,339 PointsHi,
What have you tried so far? What are you having trouble with?
Cosmin
Rudy Tan
Courses Plus Student 16,635 PointsWell to select class in CSS you need to use "dot" + class name, so in your case should be:
.intro { font-weight: bold; (inside here where you put your style for the class intro) }
Hope this helps...