|
Newbie question: I am trying to define the text inside a table. Using the body text definition below, the text in the table was partially correct but not completely. I then tried to define the text in the table object, but it doesn't work either. Can anybody help me write this correctly?
<style type="text/css">
body {
font-family: Helvetica, Geneva, Arial, SunSans-Regular, sans-serif;
font-size: 12px;
font-weight: normal;
color: #111133
}
table.a {
font-family: Helvetica, Geneva, Arial, SunSans-Regular, sans-serif;
font-size: 12px;
font-weight: normal;
color: #113311
}
</style>
...
<table class="a" width="300" etc.
...
|