为了给页面所有〈h1〉标题创建样式规则,指定将所有的〈h1〉标题显示为蓝色,字体显示为Arial。下列操作正确的是(___)。
A: 〈style type="text/css"〉 h1{color: "blue"} h1{font-family: "arial"} 〈/style〉
B: 〈style type="text/css"〉 h1{color: "blue"; fontface: "arial"} 〈/style〉
C: 〈style type="text/css"〉 h1{color: "blue"; font-family: "arial"} 〈/style〉
D: 〈style type="text/css"〉 h1{color: "blue";} h1{fontface: "arial"} 〈/style〉
A: 〈style type="text/css"〉 h1{color: "blue"} h1{font-family: "arial"} 〈/style〉
B: 〈style type="text/css"〉 h1{color: "blue"; fontface: "arial"} 〈/style〉
C: 〈style type="text/css"〉 h1{color: "blue"; font-family: "arial"} 〈/style〉
D: 〈style type="text/css"〉 h1{color: "blue";} h1{fontface: "arial"} 〈/style〉
举一反三
- 为了给页面所有标题创建样式规则,指定将所有的标题显示为蓝色,字体显示为Arial。下列操作正确的是()。 A: <STYLETYPE="text/css">H1{color:blue}H1{font-family:Arial}</STYLE> B: <STYLETYPE="text/css">H1{color:blue;fontface:Arial}</STYLE> C: <STYLETYPE="text/css">H1{color:blue;font-family:Arial}</STYLE> D: <STYLETYPE="text/css">H1{color:blue}H1{fontface:Arial}</STYLE>
- 为了给页面所有标题创建样式规则,指定将所有的标题显示为蓝色,字体显示为Arial.下列操作正确的是() A: H1{color:blue}H1{font-family:Arial}> B: H1{color:blue;fontFace:Arial}> C: H1{color:blue;font-family:Arial}> D: H1{color:blue}H1{fontFace:Arial}>
- 为了给页面所有标题创建样式规则,指定将所有的标题显示为蓝色,字体显示为Arial。下列操作正确的是()。 A: * deleted * B: h1{color: "blue"; fontFace: "Arial"} C: h1{color: "blue"; font-family: "Arial"} D: h1{color: "blue";} h1{fontFace: "Arial"}
- 下列那种引入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>
- 智慧职教: 定义内部CSS样式,则页面上段落文字的显示颜色是() <style type="text/css"> body{color:black;} .color_red{color:red;} p{color:blue;} </style>