Jump to content
  • 0

css заимствование предка


Guest Fominsa
 Share

Question

Уважаемые знатоки вопрос в следующем:

в css файле описанно

body, td, div, p,a{font-family:Tahoma, Verdana, Arial, sans-serif; font-size:12px; color:#000000}
h1 {font-size:24px; color:#000000; font-weight:normal}
h2 {font-size:20px; color:#000000; font-weight:normal;}
a h2 {font-size:20px; color:#000066; font-weight:normal; text-decoration:underline}
a h2:hover {font-size:20px; color:#000066; font-weight:normal; text-decoration:none}

первый вопрос: как это можно уменьшить (чтобы была мульти браузерность)

второй вопрос: у меня есть блок-таблица с темным задним фоном как можно автоматом просто сменить цвет текста

пример:

<table>
<tr>
<td><h1>Заголовок</h1></td>
</tr>
<tr>
<td>текст</td>
</tr>
<tr>
<td><a href="адрес">ссылка</a></td>
</tr>
</table>

думал просто создать класс .white {color:#ffffff}

и добавить его в тег <table> но! не работает

не очень хочется раздувать таблицу стилей

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

1.

body { color: #000000; font-family: Tahoma, Verdana, Arial, sans-serif; font-size: 12px; }
h1 { font-size: 24px; font-weight: normal; }
h2 { font-size: 20px; font-weight: normal; }
a h2 { color: #000066; font-size: 20px; font-weight: normal; text-decoration: underline; }
a h2:hover { color: #000066; font-size: 20px; font-weight: normal; text-decoration: none; }

и что такое мульти браузерность?

2.

table td {color: #fff;}

Link to comment
Share on other sites

  • 0
Guest Гость
1.

body { color: #000000; font-family: Tahoma, Verdana, Arial, sans-serif; font-size: 12px; }
h1 { font-size: 24px; font-weight: normal; }
h2 { font-size: 20px; font-weight: normal; }
a h2 { color: #000066; font-size: 20px; font-weight: normal; text-decoration: underline; }
a h2:hover { color: #000066; font-size: 20px; font-weight: normal; text-decoration: none; }

и что такое мульти браузерность?

2.

table td {color: #fff;}

table td {color: #fff;}

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

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