当我单击页面上的图片时,我得到一个我不想要的背景框架。
可能是css问题,但我不知道在哪里看。
我必须改变什么以及在哪里改变?这是页面。
问问题
63 次
1 回答
1
You have padding added to all table cells in this part of your styles.css file:
table th,
table td {
text-align: left;
vertical-align: top;
padding: 4px 7px !important;
padding: 6px 10px;
}
This affects the table around the Highslide image.
You can fix it by adding this to your highslide.css file:
.highslide-container table td {
padding: 0 !important;
}
于 2013-08-02T12:13:53.543 回答