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;
- 114.阅读下面HTML代码,两个div水平之间的空白距离是( )。 div{float:left;width:100px;height:200px;margin:5px;} ...... ......
- 下面HTML代码,两个div水平之间的空白距离是( )。 div{float:left;width:100px;height:200px;margin:5px;} ...... ...... A: 25px B: 10px C: 0px D: 15px
- CSS3中,设置盒子尺寸为宽度100px,高度120px A: div{width:120px;height:100px} B: div{height:120px;width:100px}
- 定义一个宽度为200px,高度为300px的盒子,代码正确的是? A: width=200px;height=300px; B: width:200px;height:300px; C: width=300px;height=400px; D: width:300px;height:400px;
内容
- 0
中国大学MOOC: CSS定义:.first{float:left;width:100px;} .second{margin-left:200px;}会使2个div元素()
- 1
在html文档中有元素<;div id="clear">;<; /div>;,现在想在<;style>;标签中为其定义宽度为200px的样式,以下哪条定义样式的语句的对的? A: B: clear{width:200px;} C: .clear{width:200px;} D: div{width:200px;} E: div{height:200px;}
- 2
中国大学MOOC: 阅读下面HTML代码,两个div水平之间的空白距离是( )。<style type="text/css"> div{float:left;width:100px;height:200px;margin:5px;}</style> ...... <div ></div> <div ></div> ......
- 3
第一个DIV的样式style为width:150px;height:50px;margin:5px 7px 2px 3px;padding:5px;border:1px solid #000;第二个DIV的样式style为width:150px;height:50px;margin:0;padding:0;border:1px solid #000;请问第一个DIV的实际宽度为________px,原点坐标为x=_____px,y=______px;第二个DIV的原点坐标为x=_____px,y=______px原点为盒子模型可见区域的左上角定点
- 4
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>;