Terry Bayne wrote: |
Is it possible to include more than one style attribute in a "Cell Style" directive?
For example, if I want to change the background color and text color for a given cell:
Cell Style Status Fixed = background-color:green;color:white
If so, what is the proper way to encode it?
Thanks,
Terry
|
Your syntax is correct. If you try a big font for example
Cell Style Status Fixed = background-color:green;font-size:40px
it will work. The problem here is that the text decoration is defined differently since it's a link. The CSS defines these style via
/* standard link colors and decorations */
a:link { color:#0000FF; text-decoration:none }
a:visited { color:#800080; text-decoration:none }
a:hover { color:#0000FF; text-decoration:underline }
a:active { color:#0000FF; text-decoration:underline }
a:focus { color:#0000FF; text-decoration:underline }
but I don't know how to change these style inline without defining a new class.
|