Jump to content
  • 0

<table> внутри <div> не понимает стиля


sptica
 Share

Question

Здравствуйте.

<div style="font-size: 80%;">
<table>
<tr>
<td>
текст
</td>
</tr>
</table>
</div>

В итоге текст получается не 80%, а 100%. Не подскажете каким образом возможно уменьшить размер шрифта внутри тэга

'ом, мне подойд?т любой вариант.

Да, в данном случае, задавать стиль у

'a бер?тся из базы данных и генерируется с помощью php.

Заранее спасибо.

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

странно, у меня все работает

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">

<head>
<title></title>
</head>

<body>
<div style="font-size: 100%;">
текст
</div>
<div style="font-size: 80%;">
<table>
<tr>
<td>
текст
</td>
</tr>
</table>
</div>
</body>

</html>

Link to comment
Share on other sites

  • 0

Ну вообще можно и к таблице обратиться, используя селектор дочернего элемента..

выглядеть будет примерно так:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>title</title>
<style type="text/css">
#container table {
font-size:80%;
}
</style>
</head>
<body>

<div id="container">
<table>
<tr>
<td>
текст
</td>
</tr>
</table>
</div>

</body>
</html>

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
 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