搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

Unwanted bevelled border on tables

  • 5 个回答
  • 1 人有此问题
  • 26 次查看
  • 最后回复者为 cor-el

more options

When opened in Chrome, Safari and IE, this works fine. When opened in Firefox there is a bevelled edge border. What is this and how can I remove it?

http://andsotobed.co.uk/eshots/20-05-16/index.html

Thanks

When opened in Chrome, Safari and IE, this works fine. When opened in Firefox there is a bevelled edge border. What is this and how can I remove it? http://andsotobed.co.uk/eshots/20-05-16/index.html Thanks

被采纳的解决方案

所有回复 (5)

more options

Are you talking about the leaves?

more options

The Inspector shows that Firefox default to outset for the border-style property.

The website would have to use "border-style:solid" to remove the beveling. ---

table:-moz-table-border-nonzero { 
  border-width: thin;
  border-style: outset;
}
more options

That has worked for the bevel, but now there is still what looks like a drop shadow on the cells in the table, any ideas? http://andsotobed.co.uk/eshots/20-05-16/index.html

more options

Actually, it's another bevel, this time a reversed bevel?

more options

选择的解决方案