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

JavaScript JavaScript and the DOM (Retiring) Making Changes to the DOM Styling Elements

michael edmondson
michael edmondson
4,510 Points

'block' and 'none'

toggleList.addEventListener('click', () => { if (listDiv.style.display == 'none'){ toggleList.textContent = 'Hide list'; listDiv.style.display = 'block'; } else { toggleList.textContent = 'Show list'; listDiv.style.display = 'none'; } });

button.addEventListener('click' ,() => { p.innerHTML = input.value + ':'; });

for this code how would i know that 'none' and 'block' would hide the list? is there any other documentation i can find on things similiar to this?

2 Answers

Steven Parker
Steven Parker
229,644 Points

I'm sure this was covered in the course (or a prerequisite), but I can't give you a specific reference offhand.

My favorite go-to resource for all things front-end is MDN, but in this case the page for the CSS display property might be more confusing than helpful.

But the use of it to remove items from the layout is discussed here on the page for visibility.