在html文档中有元素<;img src="a.jpg" />;,现在想在<;style>;标签中为其定义宽度为200px的样式,一下哪条定义样式的语句的对的?
A:
B: img{width:200px;}
C: .img{width:200px;}
D: img{width:200px;}
E: img{height:200px;}
A:
B: img{width:200px;}
C: .img{width:200px;}
D: img{width:200px;}
E: img{height:200px;}
举一反三
- 在html文档中有元素<;div id="clear">;<; /div>;,现在想在<;style>;标签中为其定义宽度为200px的样式,以下哪条定义样式的语句的对的? A: B: clear{width:200px;} C: .clear{width:200px;} D: div{width:200px;} E: div{height:200px;}
- 定义一个宽度为200px,高度为300px的盒子,代码正确的是? A: width=200px;height=300px; B: width:200px;height:300px; C: width=300px;height=400px; D: width:300px;height:400px;
- HTML5画布API中创建一个宽度为200px、高度为50px的画布,以下哪句代码正确?( )。 A: <;canvas id=”myCanvas” w=”200” h=”50”>;<;/canvas>; B: <;canvas id=”myCanvas” w=”200px” h=”50px”>;<;/canvas>; C: <;canvas id=”myCanvas” width=”200” height=”50”>;<;/canvas>; D: <;canvas id=”myCanvas” width=”200px” height=”50px”>;<;/canvas>;
- 在网页中有一个id为content的div,下面( )正确设置它的宽度为200像素,高度为100像素,并且向左浮动。 A: #content{width:200px;height:100px;clear:left;} B: #content{width:200px;height:100px;float:left;} C: #content{width:100px;height:200px;clear:left;} D: #content{width:100px;height:200px;float:left;}
- 设置DIV宽为500像素和高为400像素的正确方法是? A: height:500 px; width:400 px; B: margin:500px; padding:400 px; C: padding:500 px;margin:400 px; D: width:500 px;height:400 px;