简体   繁体   中英

Having problem with running my CSS on VS Code

I am new to using vscode. I am trying to practice HTML and CSS. I was able to run my HTML but when I try to debug and run my CSS its not working. it says file can't be reached. Thanks

You have to link your css file like this:

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

{You should post your code}

Remember to add this line in HTML

<style href='Your CSS file name'></style>

Or you can also use:

<link href='Your CSS file name'></link>

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