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 trialCody McKeever
Full Stack JavaScript Techdegree Student 408 PointsI dont under why some off my css code isn't working like the border and changing the text to upper case. it matches?
the style sheet is linked to my html the image I got to go round but I can't figure out why there is no border or why I can't get the section-title to go upper case
sorry <!DOCTYPE html> <html>
<head> <title>Cody McKeever's Resume</title> <link rel="stylesheet"href="resume.css"> </head>
<body>
<img src="https://placeimg.com/640/480/tech" alt="Cody McKeever,Web Developer" class="main-image"> <h1>Cody McKeever,Web Developer</h1> <h2 class="section-title">Summary of Qualifcations</h2> <ul> <li>Css lowercase</li> <li>Html lowercase</li> <li>C++</li>
</ul> </body>
</html>
body{ font-family:"arial"; }
.main-image{ border: soild 4px black; border-radius: 50%; }
h1{
background-color: #e2e2e2;
padding:5px;
}
.section-title { text-transform: uppercase; }
1 Answer
Nikica Maksimovski
Full Stack JavaScript Techdegree Student 14,080 PointsCopy and paste the code so we can see what is the problem
Martin Zarate
10,723 PointsMartin Zarate
10,723 PointsYou will need to share your code with us so we can look and see if we can help you.