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 添加到 Wordpress 中的某个表中。
但是,似乎默认的 css 可能会覆盖它?
<table id="2table" border="0" cellspacing="3" cellpadding="3">
CSS:
table#2table { margin-left: 450px auto; margin-top: -205px auto; }
ID 不得以数字开头。
将您的更改id="2table"为其他内容id="table2",然后相应地调整您的 CSS。
id="2table"
id="table2"