在HTML页面中,分析下面的样式规则,则以下选项中()表示属性。 P{color:red;font-size:30px;font-family:"宋体";}A、PB、colorC、redD、30px

在HTML页面中,分析下面的样式规则,则以下选项中()表示属性。 P{color:red;font-size:30px;font-family:"宋体";}

  • A、P
  • B、color
  • C、red
  • D、30px

相关考题:

● 以下CSS 选择符定义中, (61) 属于类选择符。A. P {color:red; font-size:12pt } B. p.blue{color:blue}C. #Red{color:red;} D. P EM { background: yellow }

以下样式规则正确的是()。 A.h1{color:red。font-size:25px。}B.img{color:red;font-size:25px;}C.h1{font-color:red;font-size:25px;}D.h1{color:red;font-size:25px;}

● 以下CSS 选择符定义中, (61) 属于类选择符。(61)A. P {color:red; font-size:12pt }B. p.blue{color:blue}C. #Red{color:red;}D. P EM { background: yellow }

下面哪个选项不符合样式表的基本语法规则()? A.a:link {color: #FF3366;font-family: "宋体";text-decoration: none;}B.message [PADDING-RIGHT: 0px; DISPLAY: none; PADDING-LEFT: 0px;]C.h1#blue{color:blue;}D.h2{color:red;font-size:14px;}

分析以下的CSS样式代码,可以知道()。h1{color:limegreen;font-family:arial;}A、此段代码是html的一个选择器B、选择器的名称是colorC、{}部分的样式属性作为h1元素的默认样式D、limegreen和font-family都是值

在HTML语言中,如果对文字的颜色进行修饰,应通过()A. font-family:"宋体"B. font-size: 10ptC. href=". . /color. html"D. color:" # EDFEDF"

以下CSS选择符定义中,______属于类选择符。A.P{color:red; font-size:12pt}B.p.blue{color:blue}C.#Red{color:red;)D.PEM {background: yellow}

在HTML中,分析以下的CSS样式代码,可以知道()。 h1{color:green; font-family:arial;}A、此段代码只能存在于一个网页文件中B、选择器的名称是colorC、{...}部分的样式属性将作为h1元素的默认样式D、green和font-family都是属性值

在HTML中,以下关于CSS样式中文本属性的说法,错误的是()A、font-size用于设置文本的字体大小B、font-family用与设置文本的字体类型C、color用与设置文本的颜色D、text-align用与设置文本的字体形状

在HTML中,使用HTML元素的class属性,将样式应用于网页上某个段落的代码如下所示: P class=“firstp”这是一个段落 /P 下面选项中,()正确定义了上面代码引用的样式规则。A、style type="text/css"P{color:red}/style B、style type="text/css"#firstp {color:red} /style C、style type="text/css" .firstp{color:red} /style D、style type="text/css"P.firstp{color:red}/style

关于行内样式语法格式正确的是()。A、〈p style="color:red,font-size:14px;"〉行内样式〈/p〉B、〈p style="color=red;font-size:14px;"〉行内样式〈/p〉C、〈p style="color:red;font-size:14px;"〉行内样式〈/p〉D、以上都不正确

在HTML语言中,如果要对文字的颜色进行修饰,则在代码段中会有()代码。A、font-family:"宋体";B、font-size:9pt;C、color:#990000D、href="../example1/2.html"

在HTML语言中,如果对文字的颜色进行修饰,应通过()A、 font-family:”宋体”B、 font-size:10ptC、href=”../color.html”D、 color:”#EDFEDF”

下面哪个选项不符合样式表的基本语法规则()A、 a:link {color: #FF3366;font-family: "宋体";text-decoration: none;}B、 a:visited {font-family: "宋体";color: #339900;text-decoration: none;}C、 a:hover {color: #FF6600;font-family: "宋体";text-decoration: underline;}D、 a:active (font-family: "宋体";color: #339900;text-decoration: none;)

下面哪个选项不符合样式表的基本语法规则 ?()A、 h2{color:red;font-size:14px;}B、 h1#blue{color:blue;}C、 message [ PADDING-RIGHT: 0px; DISPLAY: none; PADDING-LEFT: 0px;]D、 a:link {color: #FF3366;font-family: "宋体";text-decoration: none;}

在HTML语言中,如果要对文字的字体进行修饰,应通过()A、 font-family: "宋体"  B、 font-size: 9pt C、 color: #990000   D、 href="../example1/2.html"

在HTML页面中,分析P{color:red;font-size:30px;font-family:"宋体";}这个样式规则,则以下选项中()表示属性。A、PB、colorC、宋体D、30px

下列代码使用HTML元素的ID属性,将样式应用于网页上的某个段落:<P id=”firstp”>这是一个段落</P>,下面选项中,()正确定义了上面代码引用的样式规则。A、<Style Type=”text/css”> P {color:red} </Style>B、<Style Type=”text/css”> #firstp {color:red} </Style>C、<Style Type=”text/css”> .firstp {color:red} </Style>D、<Style Type=”text/css”> P.firstp {color:red} </Style>

在HTML中,下面()是已被访问过呈红色文字的样式。A、a:link{color:red;}B、a:hover{color:red;}C、a:visited{color:red;}D、a:active{color:red;}

在HTML文档中包含如下超链接,要实现当鼠标移入该链接时,超链接文本大小变为30px,选项中的编码正确的是()A、a href=”#” onmouseover=”this.style.font-size=30px”注册/a B、a href=”#” onmouseout=”this.style.fontsize=30px”注册/a C、a href=”#” onmouseover=”this.style.fontSize=30px”注册/a D、a href=”#” onmouseout=”this.style.font-size=30px”注册/a

在HTML语言中,如果要对文字的颜色进行修饰,应通过()A、 font-family: "宋体";B、 font-size: 9pt;C、 color: #990000D、 href="../example1/2.html"

单选题下面哪个选项不符合样式表的基本语法规则()A a:link {color: #FF3366;font-family: 宋体;text-decoration: none;}B a:visited {font-family: 宋体;color: #339900;text-decoration: none;}C a:hover {color: #FF6600;font-family: 宋体;text-decoration: underline;}D a:active (font-family: 宋体;color: #339900;text-decoration: none;)

单选题下列代码使用HTML元素的ID属性,将样式应用于网页上的某个段落:<P id=”firstp”>这是一个段落</P>,下面选项中,()正确定义了上面代码引用的样式规则。A<Style Type=”text/css”> P {color:red} </Style>B<Style Type=”text/css”> #firstp {color:red} </Style>C<Style Type=”text/css”> .firstp {color:red} </Style>D<Style Type=”text/css”> P.firstp {color:red} </Style>

单选题在HTML语言中,如果对文字的颜色进行修饰,应通过()A font-family:”宋体”B font-size:10ptChref=”../color.html”D color:”#EDFEDF”

单选题在HTML语言中,如果要对文字的字体进行修饰,应通过()A font-family: 宋体  B font-size: 9pt C color: #990000   D href=../example1/2.html

单选题在HTML页面中,分析P{color:red;font-size:30px;font-family:"宋体";}这个样式规则,则以下选项中()表示属性。APBcolorC宋体D30px

单选题在HTML语言中,如果要对文字的颜色进行修饰,应通过()A font-family: 宋体;B font-size: 9pt;C color: #990000D href=../example1/2.html