Hi everybody
I have a simple question :
If i use this code :
<body style="font-size:24px;color :blue;">
Text in body
<table>
<tr><td>
Text in table
</td></tr>
</table>
</body>
I define a body style with à 24px font size and blue color
The text in the body appears with these attributes : fine !
When i use a table inside the body, the text in the table is blue (cascading
style from body : OK), but the font size is not 24px (reset to default size
i think).
So my question is : Why does the attribute font-size is not propagated to
the text in the table and how can i do that without adding a new font-size
style in the table itself ?
Many thank for any answer.
I have a simple question :
If i use this code :
<body style="font-size:24px;color :blue;">
Text in body
<table>
<tr><td>
Text in table
</td></tr>
</table>
</body>
I define a body style with à 24px font size and blue color
The text in the body appears with these attributes : fine !
When i use a table inside the body, the text in the table is blue (cascading
style from body : OK), but the font size is not 24px (reset to default size
i think).
So my question is : Why does the attribute font-size is not propagated to
the text in the table and how can i do that without adding a new font-size
style in the table itself ?
Many thank for any answer.
Comment