Home>
[I want to load CSS]
Error messageCSS file could not be read and the path was confirmed but the cause is unknown.
Applicable source code(html code)
<! DOCTYPE html>
<html lang = "en">
<head>
<meta charset = "utf-8">
<title>takabee</title>
<link rel = "stylesheet" href = "style.css">
<link rel = "stylesheet" href = "reset.css">
</head>
<body>
<header>
</header>
<main>
</main>
<footer>
</footer>
</body>
</html>
(Css code)
.header {
width: 100%;
}
body {
background-color: red;
}
.wrapper {
width: 970px;
margin: 30px auto 40px;
}
.main {
display: block;
float: left;
width: 660px;
}
.sidemenu {
float: right;
wiidth: 275px;
}
.footer {
width: 100%;
}
Check path
Supplemental information (FW/tool version etc.)-
Answer # 1
-
Answer # 2
If the path is correct,
The code for the capcha,
It seems that the 4th line is the cause.body { background-color: red; } }
} There is one more, so a CSS syntax error should have occurred.
If it still does not work, please check that the path is correct.
Related articles
- can't load css into html
- i can't load css into html
- html - cannot center the entire page
- html - background cannot be displayed background-image
- html - svg font embedding, height and width cannot be specified
- css - text cannot be arranged vertically
- html - about css "" and "#"
- html, css: i want to center the text
- html - data cannot be saved in the database
- javascript - how to load a module in an html script
- difference in height of p tag in html css div
- html - image cannot be displayed with relative path
- html - isara copy reference hp cannot be laid out
- html - responsive css header
- even if i enter html and css, it is not reflected on the site
- html - in jquery, values cannot be assigned to elements such as nested classes and ids
- html - css animation
- html h3 element characters cannot be left justified
- unintentionally side by side in html and css
- html - z-index doesn't work in css
Related questions
- html : No padding applied, element extends outside of container, font sizes do not match layout
- html : How to fix this error? What is the problem?
- html : I don't understand how to add pseudo-elements to the text in my case. After and Before. I add, but they don't work
- html : Make two columns, two columns and one solid at the bottom when adaptive
- html : Can I lay out an arc with a gradient like in the screenshot?
- html : How to make up a block with progress?
- html : Input type search how to remove the cross? [closed]
- html : Replacing
with CSS - html : Why do blocks ignore their given height?
- javascript : I want to arrange images without HTML and CSS grid
And
reset.css should be placed before style.css.
wiidth
⇒width
lang = "en"