Jump to content
  • 0

Как сделать поле от топа второй ячейк?


xDev
 Share

Question

<!-- block -->

<table border="1" width="100">
<tr><td>Первая</td></tr>
<tr></td>Вторая</td></tr>
</table>

<!-- block -->

Как сделать поле от топа второй ячейк? Я так понимаю в таблицах margin-top не фурычит.

пардон за ошибку в заголовке.

Edited by xDev
Link to comment
Share on other sites

11 answers to this question

Recommended Posts

  • 0
<!-- block -->

<table border="1" width="100">
<tr><td>Первая</td></tr>
<tr></td>Вторая</td></tr>
</table>

<!-- block -->

Как сделать поле от топа второй ячейк? Я так понимаю в таблицах margin-top не фурычит.

пардон за ошибку в заголовке.

Поставь класс нужной ячейке, и к нему обращайся.

Link to comment
Share on other sites

  • 0

эх эти таблици, никогда с ними не связывался.

не работает margin-top

<!DOCTYPE html PUBLIC  "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>XHTML</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />
<style type="text/css">
td {border:1px solid black}
</style>
</head>
<body>

<table cellpadding="0" cellspacing="0" width="200">
<tr><td>Батон</td></tr>
<tr><td style="margin-top: 5px;">Ржаной</td></tr>
</table>

</body>
</html>

Link to comment
Share on other sites

  • 0
поставь паддинг-топ

паддинг-топ не в тему, между ячейками не будет расстояния

я вот че думаю, поставлю я между этими строчками еще одну строчку, хотя будет не красиво в плане кода.

Но все равно от других вариантов не откажусь, если они есть... а?

Edited by xDev
Link to comment
Share on other sites

  • 0
эх я дубина, спасибо!

Нее, нее, не сваливай, лови вариант

<!DOCTYPE html PUBLIC  "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>XHTML</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />
<style type="text/css">
* { margin: 0; padding: 0;}
table { border-collapse: collapse; width: 200px;}
td {border:1px solid black}
td.top { display: block; margin-top: 10px;}
</style>
</head>
<body>

<table>
<tr><td>Батон</td></tr>
<tr><td class="top">Ржаной</td></tr>
</table>

</body>
</html>

Link to comment
Share on other sites

  • 0
Нее, нее, не сваливай, лови вариант

<!DOCTYPE html PUBLIC  "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>XHTML</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />
<style type="text/css">
* { margin: 0; padding: 0;}
table { border-collapse: collapse; width: 200px;}
td {border:1px solid black}
td.top { display: block; margin-top: 10px;}
</style>
</head>
<body>

<table>
<tr><td>Батон</td></tr>
<tr><td class="top">Ржаной</td></tr>
</table>

</body>
</html>

:)

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