0

一个如何覆盖外部- 我的本地通过重要CSS的方式进行更改 - 但必须删除这个PHPCSS

它不像中那样直截了当HTML

我想做这个*position: none !important;}

在外部路径上CSS是: position: absolute ;}

一旦在开发人员模式下从浏览器中删除它,定位就会转到我需要的位置。

这些工作,但不要把它放在我需要的地方 -

absolute
fixed
relative
static
inherit
4

2 回答 2

2
you can use the *{position: none !important;} styles form your index.php file.

Example:
<style type="text/css">

* {
    position: none !important;
}
</style>

because the inline styles has the high priority. http://www.hongkiat.com/blog/css-priority-level/
于 2013-10-17T07:01:23.543 回答
0

你应该投入一些时间来研究css-specificity。当涉及到覆盖另一个 CSS 规则时,有一个完整的 CSS 点系统可以为每个 CSS 选择器点。使用直接子选择器的点,使用内联样式、类、id 等的点。

然而,它!important是超人,它几乎可以打败任何东西。关于这个主题的另一个很好的来源。

于 2013-10-17T06:49:26.117 回答