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 trialSamy TALBI
2,617 PointsModify the style of a h1 using JS
Hello,
I'm trying to modify the style of an h1 html tag as shown below :
const headline = document.getElementById('headline'); headline.style.border = '4em solid black';
My html file includes an h1 tag as follow: <h1 id="headline">My Day</h1>
It does not run. I don't understand why. Do you guys have any idea ? :)
2 Answers
Steven Parker
231,248 PointsThis code works just fine as shown, perhaps there's something else going on.
You might try making a snapshot of your workspace and post the link to it here.
Samy TALBI
2,617 PointsHello Steven,
Thank you for your answer. Here is a snapshot of my workspace : https://w.trhou.se/7ejgu08zqo
Steven Parker
231,248 PointsI launched your workspace, and it still works fine. You might try using a different browser.
Maybe I'm not understanding what you mean by "It does not run." Could you describe what you see when you open the preview?