I had html that looked like this:
where the CSS looked like this:
#whole_class { width: 1000px; } |
. I wanted to use att to replace the value of width in the CSS, but, of course, it would only modify the table tag. I could replace the id value with another value, but that's not what I wanted to do.
I finally scratched the #whole_page in the CSS and ended up with this:
<table>
<tr><td>[onload.page_width;att=table#width]</td></tr>
|
It works OK, but it does limit the usability of att to those items that are not in CSS.
Is there a way to use att to modify the contents of a CSS definition?