0

The code below should make the navigation panel centered and fixed. However, it does not meet the "centered" criteria, only fixed.

Any ideas what I have done wrong ?

<tr style="position:fixed">
  <td class="bgnavigator" "align="center" height="40" valign="top">
    <table align="center" ><tr><td>{NAVIGATOR}</td></tr></table>
  </td>
</tr>`
4

1 回答 1

0

如果要居中表格,只需将此 CSS 添加到根表格元素:

margin-left: auto
margin-right: auto

此外,您不应使用已弃用的内联 css 属性,如 align、valign。它已被弃用。仅使用 CSS 样式。

你在这里:http: //jsfiddle.net/mVzsY/

于 2013-07-30T14:08:46.707 回答