以下文字,描述的是哪一种定位方式?对象脱离普通文档流,使用 “top”、“right”、“bottom”、“left”等属性进行绝对定位,盒子的偏移位置不影响普通文档流中的任何元素,其margin不与其他任何margin折叠。( )。
A: position: absolute;
B: position:static;
C: position: relative;
D: position: fixed;
A: position: absolute;
B: position:static;
C: position: relative;
D: position: fixed;
举一反三
- 下列对position属性的值的描述错误的是?() A: static(默认),按照正常文档流进行排列 B: relative(相对定位),不脱离文档流,相对于自身静态位置通过top,bottom,left,right来定位 C: absolute(绝对定位),脱离文档流,相对于自身父级元素位置通过top,bottom,left,right来定位 D: fixed(固定定位),脱离文档流,相对于浏览器窗口通过top,bottom,left,right来定位
- 下面哪个属性不会让div元素脱离文档流? A: float:left; B: position:absolute; C: position:fixed; D: position:relative;
- 在HTML文档中设置绝对定位属性的是()。 A: position:relative B: position:absolute C: position:top D: position:right
- 下列样式代码中,可以实现绝对定位模式的是()。A、position:static;B、position:fixed;C、position:absolute;position:relative A: position:static; B: position:fixed; C: position:absolute; D: position:relative;
- 以下规则是绝对定位的是()。 A: position:absolute; B: position:fixed; C: position:relative; D: position:static;