html – 删除位置:通过添加css的绝对属性

前端之家收集整理的这篇文章主要介绍了html – 删除位置:通过添加css的绝对属性前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个html元素,id =“#item”我有一个UI事件,通过将类“.new”添加到“#item”可以通过程序来改变css的“#item”.最初我想要“#item”具有“position:absolute”.然而,一旦将“.new”类添加到“#item”中,我可以在Chrome检查器中获得我想要的格式的唯一方法删除位置:从“#item”的css绝对.我想通过“.new”中的css来完成此操作,但是在Chrome检查器中,我的更改位置属性的选项是
static
absolute
relative
initial 
inherit
fixed

据我所知,除了Chrome浏览器中的“position:absolute”之外,我们也不会这样做.任何人都可以建议将css中的“.new”还原为css默认定位.

解决方法

http://jsbin.com/ICeweli/1/
#test {
  position: absolute;
}

#test {
  position: static;
}

删除一个或另一个看到差异.

原文链接:https://www.f2er.com/html/230136.html

猜你在找的HTML相关文章