禁用或重置CSS规则

Ale*_*Del 45 css

如果定义了一个CSS规则top: 0;,我怎么能在以后禁用或中和它以支持在bottom: 0;其他地方使用?

ten*_*our 70

do top: auto; bottom:0;- auto是默认值top


Leo*_*Leo 19

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

top: initial;
Run Code Online (Sandbox Code Playgroud)

要么

bottom: initial;
Run Code Online (Sandbox Code Playgroud)