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 trialWill Ragan
1,673 Pointsdifference between q tags and block quotes?
whats the difference between q tags and block quotes? can you use either one to achieve the same goal?
2 Answers
Steven Parker
231,248 PointsThe <q> tag is an inline quote. The content is typically rendered with fancy quote marks around it.
But <blockquote> content is typically rendered in its own paragraph, and indented.
Give them both a try and see for yourself!
Chantal Baxter
2,003 PointsThe way that I learned it is like this: <blockquote> is like <div> (block content) <q> is like <span> (inline) Hope that helps a little
Will Ragan
1,673 Pointsyes it did. thank you so much
Will Ragan
1,673 PointsWill Ragan
1,673 Pointsthank you so much for your advice