Jump to content
  • 0

Как увеличить отступ только у определенной строки (tr) таблицы?


novicheG
 Share

Question

Добрый день, подскажите как можно увеличить отступ только у определенной строки (tr) таблицы?

Есть допустим, для наглядности такая таблица:

deb85b2d87bb.gif

HTML:

<table class="td_border" border="0" cellspacing="1">
<tr class="td_zag">
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
</table>


CSS:

.td_border td {
width: 100px;
padding: 3px;
border: 1px solid #d7d7d7;
}
.td_zag td {
background: #f5f5f5;
}

??

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

Я вижу только 1 способ

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>test</title>
<style type="text/css">
.td_border td {
width: 100px;
padding: 3px;
border: 1px solid #d7d7d7;
}
.td_zag td {
background: #f5f5f5;
}
</style>
</head>
<body>
<table class="td_border" border="0" cellspacing="1">
<tr class="td_zag">
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td style="background:none;border:none;height:10px;"></td>
</tr>
<tr>
<td> </td>
</tr>
</table>
</body>
</html>

Вообще такую конструкцию определенно лучше делать дивами...

Link to comment
Share on other sites

  • 0
Вообще такую конструкцию определенно лучше делать дивами...

- Это просто кусок, на самом деле там сложная табличка с расписанием, и там чисто табличные данные.

Я вижу только 1 способ

Блин.. Вот и я не допер пока что-то, - как можно без дополнительных элементов сделать. Но и на том спасибо. Мож еще кто что-нибудь подскажет.

Edited by novicheG
Link to comment
Share on other sites

  • 0
Блин.. Вот и я не допер пока что-то, - как можно без дополнительных элементов сделать. Но и на том спасибо. Мож еще кто что-нибудь подскажет.

Ну фишка в том что margin со строками и ячейками работать не будет. Работает padding border outline для ячеек можно было бы бордером сделать отступ придав ему цвет фона но у вас же рамка...

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