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.
我买了一个离子立方编码的脚本。这是我网站上的一个文件,它是从 php 包含调用的,但文本很大,比如 38px。完全不能接受。供应商说没有办法减小这个字体大小,它来自编码文件中的 CSS。是否有某种代码可以围绕 php 包含来覆盖样式设置?
谢谢你的帮助。
至少可以有两种方式:
preg_replace
就在你插入 CSS 的地方之后,插入你自己的块
.your-element-class { font-size: 24px !important; }在里面
.your-element-class { font-size: 24px !important; }