我正在尝试使用 Google Web Fonts,并且在官方网站上建议使用<link>
包含属性的标签type
,如下所示:
<link href='http://fonts.googleapis.com/css?family=Ubuntu:400,700' rel='stylesheet' type='text/css'>`
在官方 HTML5 样板站点中,他们省略了该type
属性
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:400,700">
根据这个相当古老的答案,在 HTML5 中,该type
属性在标签上是可选的,在<style>
标签上是强制性的<link>
。
但是,没有属性的版本type
在W3C 验证器上验证良好。
那么,该type
属性是强制性的还是不是强制性的?