阅读下面HTML代码,两个DIV之间的空白距离是()。 .header { margin-bottom: 10px; border:1px solid #f00; } .container { margin-top: 15px; border:1px solid #f00; } ...... ......
A: 15px
B: 10px
C: 25px
D: 0px
A: 15px
B: 10px
C: 25px
D: 0px
举一反三
- 阅读下面HTML代码,两个div之间的垂直空白距离是( )。 .header { margin: 10px; border:1px solid #f00; } .container { margin: 15px; border:1px solid #f00; } ...... A: 0px B: 10px C: 15px D: 25px
- 阅读下面HTML代码,两个DIV之间的空白距离是? <br/>.header { margin-bottom: 10px; border:1px solid #f00; } .container { margin-top: 15px; border:1px solid #f00; } <br/> ...... ......
- 第一个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原点为盒子模型可见区域的左上角定点
- 应用以下代码,两个元素之间的外边距是( )。 [style] .header { margin-bottom:10px; border:1px solid #f00; } .container { margin-top:20px; border:1px solid #f00; } [/] [body] [div class="header"] [div class="container"] [/] A: 0px B: 10px C: 20px D: 30px
- 定义如下: div.parent { width:100px; height:70px; border:1px solid gray; } div.child { width:80px; height:30px; border:1px solid black; background-color:silver; } 同时,有 html 代码如下所示: 1 2 第二个 div 在页面上的最终位置是( )。 A: 其上边框距离其父元素(div) 为 15 px 距离 B: 其上边框距离其原有位置为 15 px 距离 C: 使用默认位置,定位并未发生改变 D: 其上边框距离 body 元素为 15 px 距离