div元素的哪些CSS属性的默认值为0?( )
A: border-top-width
B: outline-width
C: align-content
D: margin-top
A: border-top-width
B: outline-width
C: align-content
D: margin-top
举一反三
- div元素的哪些CSS属性的默认值为0? A: border-top-width B: outline-width C: padding-top D: margin-top
- 设置一个的宽度为200像素,高度为80像素,它的4个边框均为2像素的黑色虚线,上、右、下、左4个方向的外边距为10像素,则下列CSS正确的是()。 A: div{width:80px;height:200px;border:2px dashed #000000;margin:0 10px;} B: div{width:80px;height:200px;border:2px solid #000000;margin:10px 0;} C: div{width:200px;height:80px;border:2px solid #000000;margin:10px;} D: div{width:200px;height:80px;border:2px dashed #000000;margin:10px;}
- 下列CSS属性,哪一项不属于盒子模型属性: A: width B: border C: margin D: padding
- 有一个 div,它的 CSS 属性如下,请问它占多少空间_______ [br][/br] #div { width: 50px; heigth: 30px; padding: 3px; border: 1px dashed red; margin: 5px;[br][/br] } A: width: 50, height: 30 B: width: 68, height: 48 C: width: 58, height: 38 D: width: 59, height: 39
- In css, to center box vertically with the center of the page, please fill in the following code space..box{ position: ________ __ ; left:50%; top:50%; margin-left: ________ ___; margin-top: __________ _ ; width: 300px; height: 200px; border:2px solid #ccc; }