Jump to content
  • 0

first-child


Destrifer
 Share

Question

Нужно применить оформление только к первому tr входящему в таблицу:

table tr:first-child {
    border-bottom: 1px solid red;
}

Причем в этой таблице находятся другие таблицы и каждый tr внутри каждой из них получает это свойство. А мне нужно только для первого tr входящего в основную таблицу. Все остальные таблицы - вложенные.

Казалось бы... решение проблемы на поверхности:

table > tr:first-child {
	border-bottom: 1px solid red;
}

Но нет. Так стиль вообще не появляется. Интересно почему. Tr является дочерним для table и я не вижу проблемы.

Тоже рекомендуют ребята с оверфлоу, но че-то как-то не работает.

 

 

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

Маленько подкорректированный вариант Switch74:

<table border=1>
  <tr>
    <td>item1</td>
    <td>item2</td>
  </tr>
  <tr>
    <td>
      <table>
        <tr>
          <td>item1</td>
          <td>item2</td>
        </tr>
      </table>
    </td>
    <td>item2</td>
  </tr>
</table>
table{
 border-spacing:0;
}
table,tr
{
  border:1px solid transparent;
}
td{
  padding: 0;
}
tr:first-child{
  border-bottom: 1px solid #f00;
}

 

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