html - css 对齐表

标签 html css stylesheet

我是 html 的新手,我在将表格向下移动到页面时遇到了问题。 http://tinypic.com/view.php?pic=eqdpjb&s=7 .我尝试设置 'margin-top: 400;'这有效但是顶部的导航栏(我使用导航“向导”在 Dreamweaver 中创建)也移动到页面底部!我怎样才能解决这个问题?我只想移动表格而不影响导航栏,这让我抓狂!

CSS

table{
    background: whitesmoke;
    border-collapse: collapse;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
}

最佳答案

您的问题是您的导航相对于您的表格定位,因此当您添加边距时,导航也会获得边距。

解决方案是为您的导航添加负边距,如下所示:

#navigationId {
    margin-top: -400px;
}

关于html - css 对齐表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7190296/

相关文章:

jquery - ASP.NET MVC - 应用了一种样式,未应用另一种样式

html - 超大列表圆盘未在中间垂直对齐

css - 覆盖 html div 中的链接样式

html - 如何在不拆分每个链接的情况下将水平导航菜单居中

javascript - 不同的屏幕尺寸使用不同的 CSS?

html - 如何在父 div 中对齐 3 个子 div

html - 移动优先媒体查询 : Is there a way to 'scope' styles (regarding visibility classes)?

css - hoverIntent 使用悬停元素的 id 来改变类

jquery - IE7问题

css - 无法在 chrome 中编辑 CSS STYLE 属性(变灰和屏蔽)