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 trialNatalie Lewis
3,096 PointsHow do I fix the underline so it doesn't have space between text?
1 Answer
Alexander Mackenzie
10,542 PointsYou could wrap the words in spans like this:
<p id="title"><span>Buddy</span> <span>the</span> <span>Dog</span></p>
And then add the underline style to:
#title span{text-decoration:underline;}
It doesn't look great in the html but it works.
Michael Cook
Full Stack JavaScript Techdegree Graduate 28,975 PointsMichael Cook
Full Stack JavaScript Techdegree Graduate 28,975 PointsPlease include a live copy of your page with codepen or a similar utility. It helps to be able to see it. Then you will likely get an answer from someone.