On 8/16/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > I have 3 bits of data to be on the same line. A text Area, dish name and > price. > > The text area forces a new line. > > What i am looking to get is the text area 20px away from the left hand side, > the > description another 20px away from the text area and the price 200px away from > leaft hand side (not 200px from the last span)
It sounds like browsers are treating the text area like a block element. In that case, you should be able to format and position it like any other block element -- floating, positioning absolutely, etc. If the text area is the tallest item among these three objects, you might want to wrap all three in a relatively positioned div and position the image and price absolutely, or float the items, or your favorite positioning methods. HTH, Michael ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
