下列那种引入css的方式是错误的?( )
A: ;
B: ; import “mystyle.css”; ;
C: ;这是一行字;
D: ; h1{color:white};
A: ;
B: ; import “mystyle.css”; ;
C: ;这是一行字;
D: ; h1{color:white};
举一反三
- 下列那种引入css的方式是错误的?( ) A: link href=”mystyle.css” rel=”stylesheet” type=”text/css” B: import “mystyle.css”; C: 这是一行字 D: h1{color:white}
- 下列那种引入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的方式是错误的?
- 下列CSS选择器不正确的是。 A: .mystyle,h3, B: myid{color: C: f00;} D: .mystyle h3, E: myid{color: F: f00;} G: p h3{color: H: f00;} I: h3.mystyle{color: J: f00;}
- 下列哪个正确的css集体声明方式 A: p;h1{color:red;} B: .one{color:red;} C: #two{color:red;} D: p,h1{color:red;}