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 trialwanderley silva
Courses Plus Student 1,140 Pointspunctuation
does any one s know about ?
4 Answers
wanderley silva
Courses Plus Student 1,140 Pointshanging-punctuation do knw about it?
Steven Parker
231,198 PointsI didn't see a question about punctuation in this quiz. Are you sure you have the right link?
Are you asking about using CSS to add punctuation? You would not normally do that, you would just add your punctuation to your HTML content. But you could add punctuation using the ::after pseudo-element selector. For example, if I wanted to add an exclamation at the end of every paragraph (p) element, I could write this CSS:
p::after { content: "!"; }
But it's not terribly useful, as the places you need punctuation might not only be at the beginning or end of an element.
I'm still not sure I've understood your question, did this answer it?
wanderley silva
Courses Plus Student 1,140 PointsHow to add punctuation on css
Steven Parker
231,198 PointsI added to my answer, see above.
wanderley silva
Courses Plus Student 1,140 Pointsi got it
Steven Parker
231,198 PointsWas that what you were asking? Remember to choose a "best answer" if so.