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 How to Make a Website Creating HTML Content Include External CSS

ERIC MILTON
ERIC MILTON
1,170 Points

Linked normalize.css to index.html but nothing change

<link rel="stylesheet" href="css/normalize.css">

when i preview the website i still see bullet points. The browser i''m using is Firefox.

ERIC MILTON
ERIC MILTON
1,170 Points
<link rel="stylesheet" href="css/normalize.css">

Here is the code i enter

2 Answers

Christopher Loyd
PLUS
Christopher Loyd
Courses Plus Student 5,806 Points

Did you make sure that your normalize.css was linked before your personal .css file in your HTML?

Additionally, you can explicitly remove bullet points from your listings like so:

ul {
list-style-type: none;
}

It should be noted that normalize.css makes many assumptions, and simply normalizes the styling across browsers instead of doing a hard reset of styling on browsers. Additionally it adds many bug fixes for specific browsers.

That being said, I really don't agree with Treehouse using it in a learning environment, and much prefer Eric Meyer's reset.css as it's more of a true reset of styling in browsers:

Eric Meyer's Reset.css

ERIC MILTON
ERIC MILTON
1,170 Points

Thanks Christopher !! It's working now !