How correctly set in css another fonts size for my table? Main page content text have one font size, but text in table must have font a little smaller:
<title>
name
</title>
<STYLE TYPE="text/css">
<!--
BODY
{
font-family: Arial, Verdana, Helvetica, sans-serif;
}
-->
</STYLE>
</head>Give this a go:<head>
<title>name</title>
<style type="text/css">
body{
font-family: Arial, Verdana, Helvetica, sans-serif;
}
table{
font-size:80%;
}
</style>
</head>Thank you, this help.Happy to help.
<title>
name
</title>
<STYLE TYPE="text/css">
<!--
BODY
{
font-family: Arial, Verdana, Helvetica, sans-serif;
}
-->
</STYLE>
</head>Give this a go:<head>
<title>name</title>
<style type="text/css">
body{
font-family: Arial, Verdana, Helvetica, sans-serif;
}
table{
font-size:80%;
}
</style>
</head>Thank you, this help.Happy to help.