Muriloftto Postado Dezembro 15, 2015 Denunciar Share Postado Dezembro 15, 2015 Saudações galera, tenho uma dúvida na organização das tabelas no html por exemplo quero deixar as duas centralizadas, como podem ver no anexo não e isso que acontece,são duas query diferentes,segue o código ?> <table border="1" width="10%" align="center" cellspacing="6"> <tr> <td width="10%" align="center">Hora</td> <td width="10%" align="center">Data</td> <td width="10%" align="center">IndexTag</td> <td width="10%" align="center">Valor</td> <? while (odbc_fetch_row($rs)) { ?> <td> <tr> <td width="80"><?php echo odbc_result($rs,"HORA")?></td> <td width="108"><?php echo odbc_result($rs,"DATA")?></td> <td width="27"><?php echo odbc_result($rs,"tagindex")?></td> <td width="50"><?php echo odbc_result($rs,"val")?></td> <?php } ?> </tr> </table> <? ?> <table border="1" width="10%" align="left" and align="center" cellspacing="6"> <tr> <td width="10%" align="left">Hora</td> <td width="10%" align="left">Data</td> <td width="10%" align="left">IndexTag</td> <td width="10%" align="left">Valor</td> <? while (odbc_fetch_row($rr)) { ?> <td> <tr> <td width="80"><?php echo odbc_result($rs,"HORA")?></td> <td width="108"><?php echo odbc_result($rs,"DATA")?></td> <td width="27"><?php echo odbc_result($rs,"tagindex")?></td> <td width="50"><?php echo odbc_result($rs,"val")?></td> <?php } ?> </tr> </table> Citar Link para o comentário Compartilhar em outros sites More sharing options...
0 jpcarpanezi Postado Dezembro 17, 2015 Denunciar Share Postado Dezembro 17, 2015 Coloque <table border="1" width="10%" style="align: center;" cellspacing="6"></table> pois align é uma função CSS então você precisa mostrar que é um "style". Acredito que colocar <center></center> também funcione mais "align: center" deixa mais responsívo! Citar Link para o comentário Compartilhar em outros sites More sharing options...
0 Muriloftto Postado Dezembro 21, 2015 Autor Denunciar Share Postado Dezembro 21, 2015 Não resolveu : ( Citar Link para o comentário Compartilhar em outros sites More sharing options...
0 lowys Postado Dezembro 21, 2015 Denunciar Share Postado Dezembro 21, 2015 Olá! Coloque as tabelas dentro de algum elemento que vamos identificar como container. ex.: <div id='container'> <table>...</table> <table>...</table> </div> no seu css faça assim: div#container{ text-align:center; } div#container > table{ display:inline-table; } Citar Link para o comentário Compartilhar em outros sites More sharing options...
Pergunta
Muriloftto
Saudações galera, tenho uma dúvida na organização das tabelas no html por exemplo quero deixar as duas centralizadas, como podem ver no anexo não e isso que acontece,são duas query diferentes,segue o código
?>
<table border="1" width="10%" align="center" cellspacing="6">
<tr>
<td width="10%" align="center">Hora</td>
<td width="10%" align="center">Data</td>
<td width="10%" align="center">IndexTag</td>
<td width="10%" align="center">Valor</td>
<?
while (odbc_fetch_row($rs)) {
?> <td>
<tr>
<td width="80"><?php echo odbc_result($rs,"HORA")?></td>
<td width="108"><?php echo odbc_result($rs,"DATA")?></td>
<td width="27"><?php echo odbc_result($rs,"tagindex")?></td>
<td width="50"><?php echo odbc_result($rs,"val")?></td>
<?php
}
?>
</tr>
</table>
<?
?>
<table border="1" width="10%" align="left" and align="center" cellspacing="6">
<tr>
<td width="10%" align="left">Hora</td>
<td width="10%" align="left">Data</td>
<td width="10%" align="left">IndexTag</td>
<td width="10%" align="left">Valor</td>
<?
while (odbc_fetch_row($rr)) {
?> <td>
<tr>
<td width="80"><?php echo odbc_result($rs,"HORA")?></td>
<td width="108"><?php echo odbc_result($rs,"DATA")?></td>
<td width="27"><?php echo odbc_result($rs,"tagindex")?></td>
<td width="50"><?php echo odbc_result($rs,"val")?></td>
<?php
}
?>
</tr>
</table>
Link para o comentário
Compartilhar em outros sites
3 respostass a esta questão
Posts Recomendados
Participe da discussão
Você pode postar agora e se registrar depois. Se você já tem uma conta, acesse agora para postar com sua conta.