居中和對齊在Chrome和Firefox上工作得很好。我有一段時間沒有做HTML/CSS,所以我不確定我做錯了什麼。我已經四處搜尋,沒有桌子居中對我有效。無法在CSS中對齊表格(Internet Explorer)
小提琴:http://jsfiddle.net/y6n7ufL9/2/
/* different things I tried to get to work */
#table {
display: table;
text-align: center;
margin-left: auto;
margin-right: auto;
table-layout: auto;
}
body {
background-color: #ececec;
}
#navborderline {
width: 50%;
margin: auto;
margin-top: 5px;
height: 2px;
background-color: black;
}
#navborder ul {
text-align: center;
}
#navborder ul li {
list-style-type: none;
display: inline;
margin-left: 5%;
margin-right: 5%;
}
#navborder a {
text-decoration: none;
color: black;
font-size: 18px;
border-bottom: 1px solid transparent;
-webkit-transition: all .3s ease-in-out;
-moz-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
}
#navborder a:hover {
border-bottom: 1px solid red;
}
#navborder {
margin-top: 10px;
}
#table {
width: 60%;
margin: auto;
margin-top: 5px;
text-align: center;
}
#table td,
tr {
border: 1px solid black;
width: 50%;
}
<html>
<head>
<title>Travis' Portfolio</title>
<link rel="stylesheet" type="text/css" href="css/css.css" />
<!--[if IE]>
<link rel="stylesheet" type="text/css" href="css/ie.css" />
<![endif]-->
<link rel="stylesheet" type="text/css" href="css/reset.css" />
</head>
<body>
<div id="navborder">
<ul id="ie">
<li><a href="#">Home</a>
</li>
<li><a href="#">Assignments</a>
</li>
<li><a href="#">Contact</a>
</li>
<li><a href="#">Random</a>
</li>
</ul>
</div>
<div id="mainbody">
<table id="table">
<thead>
<tr>
<td colspan="2">Ello</td>
</tr>
</thead>
<tr>
<td>Hello</td>
<td>hello v2</td>
</tr>
<tr>
<td>Hello</td>
<td>hello v2</td>
</tr>
</table>
</div>
<div id="mainfooter"></div>
</body>
</html>
豬頭...只是刪除的菜單項的填充。由於默認的UL css,它們偏離中心大約10px。 – 2014-10-29 17:10:20
Cayce,那不固定桌子。如果您想知道,我已經重置了位置。 – travis 2014-10-30 16:29:30
不好意思地說,但是我沒有看到問題:(...它不會發生在我看到的任何事情上。通過刪除填充,它將集中在我已經測試過的所有瀏覽器中。 – 2014-10-30 16:37:38