我在< link>之间有一些混乱和< a> ;. 我知道为了将CSS添加到HTML文档中,我们使用< link>标签,例如:
<link type="text/css" rel="stylesheet" href="/spinner/styles.css?ln=css" />
但是,我不明白为什么我们不使用锚点< a>标签(因为它包含相同的必需属性),类似于:
<a type="text/css" rel="stylesheet" href="/spinner/styles.css?ln=css" />
这两个标签是否可互换?另外,如果可以的话,那么我们如何选择一个呢,为什么呢?
更新:
我有这个混乱,因为我在“完整参考HTML”和“关于< a>的rel属性的CSS书籍标签:
rel: For anchors containing the
href
attribute,this attribute
specifies the relationship of the target object to the link object.