hola es que quiero ver si se puede colocar una tabla en la parte superior de la pagina asi como el bottom ??
no tngo mucho conocimiento
| |||
colocar una tabla en bottom de la pagina hola es que quiero ver si se puede colocar una tabla en la parte superior de la pagina asi como el bottom ?? no tngo mucho conocimiento |
| ||||
Respuesta: colocar una tabla en bottom de la pagina Yo tampoco no te comprendo mucho pero prueba con esto
Código:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Documento sin título</title> <style type="text/css"> #top { top:0px; } #bottom { bottom:0px; position:fixed; } body { margin-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; } </style> </head> <body><table id="top" width="100" border="1" cellpadding="0" cellspacing="0"> <tr> <td> </td> </tr> </table> <table id="bottom" width="100" border="1" cellpadding="0" cellspacing="0"> <tr> <td> </td> </tr> </table> </body> </html> |
Etiquetas: |