Mark, On Sep 25, 2006, at 11:19 PM, Mark J. Reed wrote:
> On 9/25/06, bill scheider <[EMAIL PROTECTED]> wrote: >> I've modified and used the form found on Stu Nichols site with >> good results. >> It can be found here: >> http://www.cssplay.co.uk/menu/form.html > > What I do need is two rectangles with different colors in the same > vertical space. Which I don't know how to get outside of tables (or > table-* display: values, anyway), or explicit positioning which will > be easily thwarted by font size changes and the like. You can use a list if you like, <ul class="radios"> <li><label class="color1"><input type="radio" >The label</label></li> <li><label class="color2"><input type="radio" >The label</label></li> </ul> .radios { list-style-type: none; margin: 0; padding: 0; } .radios li { margin: 0; padding: 0; } .radio .color1 { background-color: pink; } .radio .color2 { background-color: silver; } .radios input { width: 1.5em; } Somehow I missed the first message in this thread. If I missed the point, let me know and I'll try again. Roger, -- Roger Roelofs [EMAIL PROTECTED] ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7 List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
