Is there a way to take this box that I have floating on the right side of a div, and make it so that it is flush with the top-right corner? I have tried making it position:relative and top:0px, but it stubbornly remains offset by the padding of the legend.
Is there a way to take this box that I have floating on the
Share
You either need to set the position to
absolute, or set the#titleelement tofloat:left.Example with
position:absoluteon #top andposition:relativeon #out:http://jsfiddle.net/bozdoz/dpUM2/9/
Example with #title set to
float:left:http://jsfiddle.net/bozdoz/dpUM2/13/