• 2022-11-02
    在网页中有一个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;}
  • B

    内容

    • 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>;