禁用或重置CSS规则

时间:2010-12-09 09:52:35

标签: css

如果使用top: 0;定义CSS规则,我如何稍后停用或中和它以支持其他地方使用的bottom: 0;

4 个答案:

答案 0 :(得分:68)

执行top: auto; bottom:0; - autotop

的默认值

答案 1 :(得分:22)

top: auto;
bottom: 0px;

答案 2 :(得分:18)

如果您有拉伸问题,只需使用初始重置规则

top: initial;

bottom: initial;

答案 3 :(得分:1)

CSS是级联的,所以例如,如果你先放p { top: 0;),然后放p.bottom {top:auto; bottom: 0;),你的css会听p.bottom后面的