HTML not loading CSS file

前端 未结 25 1324
执念已碎
执念已碎 2020-12-01 13:55

I am completely stumped as to why this doesn\'t work. It seems the HTML file can\'t load the CSS for some reason, even though both are in the same directory. Any idea what m

相关标签:
25条回答
  • 2020-12-01 14:57

    Add

    type="text/css"
    

    to your link tag

    While this may no longer be necessary in modern browsers the HTML4 specification declared this a required attribute.

    type = content-type [CI]

    This attribute specifies the style sheet language of the element's contents and overrides the default style sheet language. The style sheet language is specified as a content type (e.g., "text/css"). Authors must supply a value for this attribute; there is no default value for this attribute.

    0 讨论(0)
提交回复
热议问题