Let's say I have a style sheet
dt{
width=15%;
}
dt x{
background-color:red;
????
}
And some html...
<dt>abc
<x> xyz </x>
</dt>
What if anything can put in place of the ???? to cause the box being defined by 'dt x' to be the remainder of dt?
The idea being that there should be a box 15% wide with text "abc" on the left with NO background color and the remainder of the 15% filled with red background.