1

我正在尝试将自定义 css 添加到 Wordpress 中的某个表中。

但是,似乎默认的 css 可能会覆盖它?

<table id="2table" border="0" cellspacing="3" cellpadding="3">

CSS:

table#2table {
       margin-left: 450px auto;
       margin-top: -205px auto;
}
4

1 回答 1

2

ID 不得以数字开头。

将您的更改id="2table"为其他内容id="table2",然后相应地调整您的 CSS。

于 2013-04-17T10:46:52.420 回答