<link type="text/css" rel="stylesheet" href="css/style.css" />是什么意思
<link type="text/css" rel="stylesheet" href="css/style.css" />是什么意思
日期:2017-01-17 20:07:57 人气:1
link连接 ,HTML里引用外部样式表。
type 类型 ,声明这是CSS 的文本格式。text/css
rel , stylesheet~ 声明这是样式表
href 链接 ,这是在CSS文档下名叫style后缀为css的文档 !
