更多“The national flag of Great Britain is made up of a blue background and three crosses: ”相关问题
  • 第1题:

    以下CSS选择符定义中,______属于类选择符。

    A.P{color:red; font-size:12pt}
    B.p.blue{color:blue}
    C.#Red{color:red;)
    D.PEM {background: yellow}

    答案:B
    解析:
    本题考查CSS的基础知识。CSS(Cascading Style Sheets,层叠样式表,简称为样式表)是用于(增强)控制网页样式并允许将样式信息与网页内容分离的一种标记性语言。在CSS基本语法结构中,样式表的结构为:选择符{属性1:值1;属性2:值2;…}其中,选择符有如下几种形式:(1)HTML标记。任何HTML标记都可以是一个CSS的选择符,如P{color:red;font-size:12pt}。(2)类选择符。一个选择符能有不同的CLASS(类),因而允许同一元素有不同的样式。格式如下:标记名:类名{属性1:值1;属性2:值2;…}(3)ID选择符。ID选择符个别地定义每个元素的成分。这种选择符应该尽量少用,因为它具有一定的局限。一个ID选择符的指定要有指示符“#”在名字前面。(4)关联选择符。关联选择符是用空格隔开的两个或更多的单一选择符组成的字符串。这些选择符可以指定一般属性,而且因为层叠顺序的规则,它们的优先权比单一的选择符大。

  • 第2题:

    利用XSL创建一style属性,style的值为“color:bule;background-color:red”,能实现该功能的选项为()。

    A.<attribute name="color">blue</attribute> <attribute name="background-color">red</attribute>

    B.<attribute name="style">color:blue</attribute> <attribute name="style">background-color:red</attribute>

    C.<attribute name="style"> color:blue;background-color:red </attribute>

    D.<element attribute="style"> color:blue;background-color:red </element>


    color:blue;background-color:red

  • 第3题:

    使用线性渐变制作背景样式如下: background: linear-gradient(45deg, red,yellow,blue);

    A.从左到右依次为红色、黄色、蓝色

    B.从右到左依次为红色、黄色、蓝色

    C.从左下到右上依次为蓝色、黄色、红色

    D.黄色、蓝色


    从左下到右上依次为红色、黄色、蓝色

  • 第4题:

    以下CSS选择符定义中,______属于类选择符。

    A.P{color:red;font-size:12pt}
    B.p.blue{color:blue}
    C.#Red{color:red;)
    D.PEM{background:yellow}

    答案:B
    解析:
    本题考查CSS的基础知识。CSS(Cascading Style Sheets,层叠样式表,简称为样式表)是用于(增强)控制网页样式并允许将样式信息与网页内容分离的一种标记性语言。在CSS基本语法结构中,样式表的结构为:选择符{属性1:值1;属性2:值2;…}其中,选择符有如下几种形式:(1)HTML标记。任何HTML标记都可以是一个CSS的选择符,如P{color:red;font-size:12pt}。(2)类选择符。一个选择符能有不同的CLASS(类),因而允许同一元素有不同的样式。格式如下:标记名:类名{属性1:值1;属性2:值2;…}(3)ID选择符。ID选择符个别地定义每个元素的成分。这种选择符应该尽量少用,因为它具有一定的局限。一个ID选择符的指定要有指示符“#”在名字前面。(4)关联选择符。关联选择符是用空格隔开的两个或更多的单一选择符组成的字符串。这些选择符可以指定一般属性,而且因为层叠顺序的规则,它们的优先权比单一的选择符大。

  • 第5题:

    2、利用XSL创建一style属性,style的值为“color:bule;background-color:red”,能实现该功能的选项为()。

    A.<attribute name="color">blue</attribute> <attribute name="background-color">red</attribute>###SXB###B.<attribute name="style">color:blue</attribute> <attribute name="style">background-color:red</attribute>###SXB###C.<attribute name="style"> color:blue;background-color:red </attribute>###SXB###D.<element attribute="style">
    C

  • 第6题:

    画一条宽度为屏宽一半,粗细为5像素,居中显示的蓝色的线,下面正确的选项是()。

    A.<hr size="5" width="50%" align="center" color="blue" />

    B.<hr size="50%" width="5" align="center" color="blue" />

    C.<hr style="line-height:5px;line-width:50%;align:center;background-color:blue" />

    D.<hr style="height:5px;width:50%;align:center;background-color:blue" />


    <hr style="height:5px;width:50%;align:center;background-color:blue" />?<hr size="5" width="50%" color="blue" />