tags:

views:

23

answers:

3

Here's a fiddle.

I need to make the <fieldset> the width of its contents, rather than its parent. Is there a good way to do this?

+2  A: 

You want a shrinkwrap?

http://jsfiddle.net/meder/XDMfN/5/

meder
A: 

Add display:inline to the fieldset http://jsfiddle.net/meder/XDMfN/5/

Smegger
A: 

display: inline;

Mathletics