有一样式表文档sheet1.css,现要将该样式表文档中定义的样式应用到当前页面中,下列方法正确的是()(选择两项)。
A: 将下列代码插入文档的<HEAD>部分中:<style type = "text/css">@import url('sheet1.css')</style>
B: 将下列代码插入文档的<HEAD>部分中:<link rel="stylesheet" type="text/css" href="sheet1.css">
C: 将下列代码插入文档的<HEAD>部分中:<style type = "text/css"><link rel="stylesheet" type="text/css" href="sheet1.css"></style>
D: 在每个要使用sheet1.css样式的元素的style属性中引用该样式表文档
A: 将下列代码插入文档的<HEAD>部分中:<style type = "text/css">@import url('sheet1.css')</style>
B: 将下列代码插入文档的<HEAD>部分中:<link rel="stylesheet" type="text/css" href="sheet1.css">
C: 将下列代码插入文档的<HEAD>部分中:<style type = "text/css"><link rel="stylesheet" type="text/css" href="sheet1.css"></style>
D: 在每个要使用sheet1.css样式的元素的style属性中引用该样式表文档
举一反三
- 有一样式表文档sheet1.css,现要将该样式表文档中定义的样式应用到当前页面中,下列方法正确的是()(选择两项)。 A: 将下列代码插入文档的<HEAD>部分中:<style type = "text/css">@import url('sheet1.css')</style> B: 将下列代码插入文档的<HEAD>部分中:<link rel="stylesheet" type="text/css" href="sheet1.css"> C: 将下列代码插入文档的<HEAD>部分中:<style type = "text/css"><link rel="stylesheet" type="text/css" href="sheet1.css"></style> D: 在每个要使用sheet1.css样式的元素的style属性中引用该样式表文档
- 在HTML文件中应用abc.css文件中的样式的方法有( ) A: <link href="abc.css" type="text/css" rel="stylesheet"> B: <style type="text/css">@import (abc.css);</style> C: <style type="text/css">import url (abc.css);</style> D: <style type="text/css">@import url(abc.css);</style>
- 已经定义好了一个外部样式表文件c.css,要在网页中链接此外部样式表, 正确的做法是() A: <html><head><style><link type=”text/css” rel=”c.css”></style></head></html> B: <html><head><style><link type=”text/css” href=“stylesheet”></style></head></html> C: <html><head><link type=”text/css” rel=“stylesheet”href=”c.css”></head></html> D: <html><head><link type=”text/css” rel=“stylesheet”></head></html>
- 下列那种引入css的方式是错误的?( ) A: <link href=”mystyle.css” rel=”stylesheet” type=”text/css”> B: <style type=”text/css”> import “mystyle.css”; </style> C: <h1 style=”color:white”>这是一行字</h1> D: <style type=”text/css”> h1{color:white}</style>
- 在HTML页面中,调用外部样式表的方法是()(选择一项) A: <stylerel="stylesheet"type="text/css"href="外部样式表地址"/> B: <linkrel="stylesheet"type="text/css"href="外部样式表地址"/> C: <stylerel="stylesheet"type="text/css"link="外部样式表地址"/> D: <linkrel="stylesheet"type="text/css"style="外部样式表地址"/>