Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我基本上需要禁用从远程代码中获取的内联 CSS“位置”属性。
我需要离开这里,
到这里,
我尝试了以下规则,但我不太清楚如何禁用位置属性,如图所示。
table.fc-border-separate div:nth-child(1)
如果您的标记受插件或 js 或某些脚本的影响,那么绝对位置只会被覆盖,而不是使用相对位置,只需像这样使用静态
table.fc-border-separate + div{position: static !important;}
但我不确定在你的情况下你是否仍然可以使用相对而不是静态。