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 trialSilvia Ramos
Front End Web Development Techdegree Graduate 18,318 PointsFunction on this example
Hi there,
I still don't get the function here...
IF divList.style.display === "none"
what is NONE?
And,
IF divList.style.display = 'block'
Thank you
1 Answer
Silvia Ramos
Front End Web Development Techdegree Graduate 18,318 PointsHey! thank you, now it makes more sense!
(not sure why I can't give points)
Tim Oltman
7,730 PointsTim Oltman
7,730 PointsHi Silvia,
display is a CSS property that can take the values of "none" and "block". Block is the default value and the HTML element will display normally. If display is set to none the element will not be displayed on the page.
For example, if you put the following code in your css file (or style tag) your <h1> tag will simply not be rendered on the page.