He intentado poner dentro del Tag <table> la posicion top:240px; left:1000px;.
Tanbien intente poner esta informacion en la hoja de estilo, y como ultima opcion intente meter la tabla dentro de un div.
Sin embargo nada de esto hace que la tabla cambie de sitio del punto 0,0. Le puse en el tag Table float right y lo que hizo fue ponermelo en la esquina superior derecha..
La verdad ya no se que estoy haciendo mal.
Pongo los codigos por si alguien pilla mi error.
Agradezco cualquier ayuda.. es URGENTE!!!
Código HTML:
Ver original
<div id="tienetabla" style="top:40%; left:60%; background-color:#9C3;"> <table class="registro" style="float:right; top:inherit;"> <caption> Historial de las ultimas 5 posiciones recibidas </caption> <tr> </tr> <?php $archivo = file("historial.txt"); if (!$archivo) { echo "<p>No se pudo abrir el archivo.</p>"; } $filas=count($archivo); for($i=0;$i<$filas;$i++) { $campo=explode(",",$archivo[$i]); $date = $campo[0]; $time = $campo[1]; $lnt = $campo[2]; $lngNO = $campo[3]; $sustituye = array("\r\n", "\n\r", "\n", "\r"); $lng = str_replace($sustituye, "", $lngNO); if(($filas-$i)<=5){ ?> <tr> </tr> <?php }} ?>
la hoja de estilo
Código CSS:
Ver original
#tienetabla{ position: absolute; top:240px; left:1115px; } table.registro{ position:absolute; top:10px; left:10px; } table.registro caption{ font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif; font-size: medium; font-style: italic; font-weight: bolder; font-variant: normal; color: #006; text-align: center; } table.registro th{ position:relative; float:right; font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif; font-size: small; font-weight: bolder; font-style: italic; color: #006; } table.registro td{ position:relative; float:right; font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif; font-size: small; font-style: italic; color: #006; }