Please help me i have made a class in html and using in css buy selector . (dot) but VScode is showing error
.header-area{
}
Please help me i have made a class in html and using in css buy selector . (dot) but VScode is showing error
.header-area{
}
VScode provides you with a helpful CSS linter, this is basically telling you that you should have something inside your class. e.g.
.header-area{}
- will throw a warning,
.header-area{background-color:red;}
- will not throw a warning