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 trial

HTML Introduction to HTML and CSS (2016) Make It Beautiful With CSS Select and Style by Element

Routine Poutine
Routine Poutine
26,050 Points

Are "attribute" and "property" synonymous, as HTML has attribute:value pairs and CSS has property:value pairs?

Hi,

I'm trying to wrap my mind around the vocabulary for HTML and CSS. When we say an HTML tag has an attribute and a CSS rule has a property, are we saying the same thing or are these different categories? JavaScript objects have properties, does that make them more like a CSS rule than an HTML tag, or all three describing the same thing?

Best,

Matt

1 Answer

Steven Parker
Steven Parker
230,995 Points

Depending on the context, those words are sometimes used interchangeably. But in other contexts they can have specific and different meanings.

For example, jQuery has different methods for accessing a property and an attribute. One can say a checkbox element has a "checked" property and also an attribute. The attribute should be used only to set the initial value of the checkbox. The checked attribute value does not change with the state of the checkbox, while the checked property does.