Buenas,
No consigo centrar estas tablas en medio de la pantalla, he probado de todo, desde margin:0 auto, hasta text-align:center, pero no hay manera.
¿Podéis decirme que estoy haciendo mal?
Código HTML:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
body{
text-align:center;
}
table, th, td {
border: 1px solid #D4E0EE;
border-collapse: collapse;
font-family: "Trebuchet MS", Arial, sans-serif;
color: #555;
}
h2,h4 {
font-family: "Trebuchet MS", Arial, sans-serif;
color: #555;
}
caption {
font-size: 150%;
font-weight: bold;
margin: 5px;
}
td, th {
padding: 7px;
}
thead th {
text-align: center;
background: #E6EDF5;
color: #4F76A3;
font-size: 100% !important;
}
tbody th {
font-weight: bold;
}
tbody tr { background: #FCFDFE; }
tbody tr.odd { background: #F7F9FC; }
table a:link {
color: #718ABE;
text-decoration: none;
}
table a:visited {
color: #718ABE;
text-decoration: none;
}
table a:hover {
color: #718ABE;
text-decoration: underline !important;
}
tfoot th, tfoot td {
font-size: 85%;
}
.right{
float:right;
}
.left{
float:left;
}
.empleados{
float:right;
margin-right:90px;
}
.titulo1 {
text-align: center;
color: #4F76A3;
font-size: 100% !important;
padding: 2px;
font-weight: bold;
border: 0px solid #D4E0EE;
border-collapse: collapse;
font-family: "Trebuchet MS", Arial, sans-serif;
color: #555;
width:364px;
margin:0px;
}
.verde thead th{
background: #CEEF9C;
color:#59B74F;
padding: 7px;
border: 1px solid #CEEF9C;
}
.verde td {
border: 1px solid #CEEF9C;
}
.resumenanterior{
float:left;
margin-left:20px;
}
.resumenhoy{
float:left;
margin-left:20px;
}
.resumenhoy td, .resumenmes td, .resumenanterior td, .tiempo td{
text-align:center;
}
.resumenmes{
float:left;
margin-left:20px;
}
.both{
clear:both;
}
.incidencias{
margin-bottom:30px;
}
.tiempo table{
margin:auto;
}
.footer{
font-family: "Trebuchet MS", Arial, sans-serif;
font-size: 13px;
color:#555;
}
#center{
margin:0 auto;
}
#contenedor{
margin:0 auto;
text-align:center;
}
<script type="text/javascript"> function abreSitio(){
var URL = "http://";
var web = document.form1.empleados.options[document.form1.empleados.selectedIndex].value;
window.open(URL+web, '_self', '');
}
<h2>Tiempos Empleado1
</h2> <h4>Fecha: 10/12/2009
</h4>
<form name="form1" action="#" target="_blank"> <input type="button" value="Ir" onClick="javascript:abreSitio()"/>
<tr><th title="Minutos que anotamos en las Aperturas de Incidencias">Tiempo Aperturas
</th><th title="Minutos de Aperturas MAS tiempo de los Comentarios de Pectra">Tiempo Total
</th></tr></thead> <div class="resumenanterior"> <p class="titulo1">Mes Anterior - NOVIEMBRE
</p> <table><thead><tr><th>Abiertas
</th><th title="Botón Solucionar Incidencia">Solucionadas
</th><th title="Botón Finalizar Incidencia">Cierre Administrativo
</th></tr></thead>
<p class="titulo1">HOY
</p> <table class="verde"><thead><tr><th>Abiertas
</th><th title="Botón Solucionar Incidencia">Solucionadas
</th><th title="Botón Finalizar Incidencia">Cierre Administrativo
</th></tr></thead>
<p class="titulo1">Mes Actual - DICIEMBRE
</p> <table><thead><tr><th>Abiertas
</th><th title="Botón Solucionar Incidencia">Solucionadas
</th><th title="Botón Finalizar Incidencia">Cierre Administrativo
</th></tr></thead>
<div class="incidencias">
Muchas gracias de antemano!