Re: [css-d] 5

2011-04-26 Thread John Franks
It will help you to keep good form!... http://xn--krutersachse-hcb.de/friends_links.php?veqSID=88i5 __ css-discuss [css-d@lists.css-discuss.org] http://www.css-discuss.org/mailman/listinf

Re: [css-d] 5 column 5 row table

2007-08-20 Thread Joel D Canfield
> I' m trying to > recreate a five column, 5 row table using CSS I'll leave the other semantic issues to more experienced heads, but are you certain your data isn't really tabular, making a table the correct tool? joel __ css-di

[css-d] 5 column 5 row table

2007-08-20 Thread Gary Williamson
Generator Microsoft Word 11 (filtered medium) I' m trying to recreate a five column, 5 row table using CSS which is fluid(resizes with browser dimensions), similar to this one (code below) but using CSS is driving me mad! Sometimes it works in Firefox but doesn' t render in IE and vice-versa. I

Re: [css-d] 5 column CSS box

2006-05-22 Thread Felix Miata
On 06/05/22 09:54 (GMT-0400) skye estes apparently typed: > On 5/22/06, Jono <[EMAIL PROTECTED]> wrote: >> Brian Jones wrote Tue May 16: >> > When using this css for each div, how can I make it so that the divs >> > expand with the size of the text One option is to size absolutely everything th

Re: [css-d] 5 column CSS box

2006-05-22 Thread Nick Fitzsimons
skye estes wrote: > creating designs that resize well goes a long way towards improving the > accessibility of the web. > > i suggest setting a pixel font size for the body and using ems for your > units of measurement thereafter. Setting a pixel font-size for the body will prevent Internet Explo

Re: [css-d] 5 column CSS box

2006-05-22 Thread skye estes
On 5/22/06, Jono <[EMAIL PROTECTED]> wrote: > > > Hi, > > > > When using this css for each div, how can I make it so that the divs > > expand with the size of the text > > > Brian, > > As neat as it sounds to expand your layout on text resize, you really have > to consider your total page size firs

Re: [css-d] 5 column CSS box

2006-05-22 Thread Jono
> Hi, > > When using this css for each div, how can I make it so that the divs > expand with the size of the text Brian, As neat as it sounds to expand your layout on text resize, you really have to consider your total page size first. My site currently expands when text is resized and dependi

Re: [css-d] 5 column CSS box

2006-05-16 Thread Daniel Pape
Brian. A DIV is considered a block element and so typically its content flows to fill the size of the DIVs specified width rather than the other way around. A DIV will expand its height to fit the text inserted. What you could do is set the widths of the DIVS to percentages this would al

Re: [css-d] 5 column CSS box

2006-05-16 Thread Brian Jones
On 5/16/06, Brian Jones <[EMAIL PROTECTED]> wrote: > > The best way to do this would be to "float" each div inside your container. > > This will allow them to line up horizontally. The CSS may look like this. > > > > #Box1 { > > float: left; > > width: xxx; > > } > > #Box2 { > > float:

Re: [css-d] 5 column CSS box

2006-05-16 Thread Brian Jones
> The best way to do this would be to "float" each div inside your container. > This will allow them to line up horizontally. The CSS may look like this. > > #Box1 { > float: left; > width: xxx; > } > #Box2 { > float: left; > width: xxx; > } > #Box3 { > float: left; > width

Re: [css-d] 5 column CSS box

2006-05-03 Thread Sandra Qu
Try these sites for guidance :: Horizontal lists http://css.maxdesign.com.au/listamatic/ :: http://www.cssplay.co.uk/menus/index.html --sandra __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d I

Re: [css-d] 5 column CSS box

2006-05-02 Thread Cem Meric
> I am looking for something like this: > > > Text > Text > Text > Text > Text > > _ _ _ _ _ > |__Box 1 _||__Box 2 _| |__Box 3 _| |__Box 4 _| |__Box 5 _| > here are some quick fixes ;) position: absolute; http://kalka

Re: [css-d] 5 column CSS box

2006-05-02 Thread Daniel Pape
The best way to do this would be to "float" each div inside your container. This will allow them to line up horizontally. The CSS may look like this. #Box1 { float: left; width: xxx; } #Box2 { float: left; width: xxx; } #Box3 { float: left; width: xxx; } #Box4 { float:

[css-d] 5 column CSS box

2006-05-02 Thread Brian Jones
Hi, I am trying to create a small 5 column CSS box that will render correctly across browsers. Also I would like to be able to adjust the widths of each box accordingly I am looking for something like this: Text Text Text Text Text _ _