Jump to content
  • 0

Как назначить класс всем ячейкам один раз


aruru
 Share

Question

<table>
<tr>
<td>
<td>
...
</table>

Внутри table много ячеек. Как им всем назначить один и тот же класс? На странице есть еще одна или более больших таблиц, но у всех у них должен быть другой класс, тоже одинаковый для всех. Поэтому задание в виде

<style>
TD{
...
}
</style>

не подходит.

Т.е. можно ли написать что-то вроде

<style>
name01.td{
...
}
</style>
...
<table name="name01">
<tr>
<td>
...
</table>

чтобы в результате стиль name01.td применился ко всем td внутри таблицы с именем name01.

Edited by aruru
Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

Изучайте основы CSS, а то у вас еще много таких примитивных вопросов будет...

Особенно прочитайте про классы и про наследование. Правильная запись такая:

<style>

.name01 td{

...

}

</style>

...

<table class="name01">

<tr>

<td>

...

</table>

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