简体   繁体   中英

linking a css file to my html file

I am having way too much trouble figuring out how to link a .css file to my .html file. They are both in the same folder on my desktop.

I created the these in sublime and when I made the styles.css I did saveas selected the folder on my desktop that my html was in and then saved it as a css file. Something that might be the problem is when I look at the files in the folder, the html say filename.html but the css just says style without the .css and the file type is file. I tried to go into the properties and change it to .css but that also didn't work.

This is the html file I have tried "/style.css" , "foldername/style.css" , and the entire path

<html>


<link href="style.css" rel="stylesheet" type="text/css"/>

<body>

<div class ="test">
    test
</div>

</body>

</html>

This is the css file with the file name of style.css

.test{color:green; margin:50px;}

Did you name your CSS file "styles.css" or "style.css?"

When working locally, make your css paths relative. So it would look something like this:

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM