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 trialspalak
12,151 PointsEqual sign vs. colon
Defining img names and alternate attributes on the about.html page, one should use an equal sign. In defining an attribute in the css page (e.g., display: block;) one uses a colon.
Is there a simple rule for which to use in which occasion? Is it enough to say that you use an equal sign in html, and a colon in css?
Thanks,
1 Answer
Véronique Bellamy
20,810 PointsPretty much, it is language dependent. For example, in CSS, it's always a colon. In HTML, it's always an equal sign unless you're using inline or internal CSS (which you should never do). As you learn more languages, you'll learn how attributes and variables are assigned values for the language.