Jump to content
  • 0

margin


sneg06
 Share

Question

Хочу запихнуть таблицу в центр экрана, прочитал что это делается примерно так:

<head>
<title>Новый Документ</title>
</head>
<body>
<style type="text/css">
table {margin:0 auto;}
</style>
<table width="50" border="1" align="center">
<tr>
<td> </td>
</tr>
</table>
</body>
</html>

но, у меня не работает, подскажите плиз где я ошибся.:)

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

<html>
<head>
<title>Новый Документ</title>
<style type="text/css">
table {margin: -25px 0 0 -25px; position: absolute; top: 50%; left: 50%; }
</style>
</head>
<body>
<table width="50" height="50" border="1">
<tr>
<td> </td>
</tr>
</table>
</body>
</html>

То-есть ты говориш что твоя таблица позиционирована абсолютно, что отступы сверху и слева - 50% (половина страницы). А чтобы она была таки именно посередине ее надо сдвинуть вверх и влево на половину ширины и высоты таблицы. тоесть на 25 туда и туда.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy