[Wicket-user] Re: Text breaks out of border

2005-03-09 Thread Gili
Two points to be made: 1) This issue is discussed in great detail here: http://www.complexspiral.com/publications/containing-floats/ 2) The reason that Firefox wasn't expanding vertically is because it could not break the text into smaller pieces (since it's one long word). IE cheats c

[Wicket-user] Text breaks out of border

2005-03-09 Thread Gili
Below is my HTML code. Please copy/paste it into some HTML file and view it in Firefox. What you will see, if you hit CTRL-A (select all), is that the contents of the border flows outside of it. This is due to the fact that overflow defaults to "visible" which tells the browser to allow th

Re: [Wicket-user] Centering s?

2005-03-09 Thread Gili
Got it! Moved "margin-left: auto; margin-right: auto" from "wicket-box" to "wicket-top". Stupid mistake on my behalf... The wicket-top had a "width" style associated with it so it obviously needed to get the centering tags. Gili --Original Message Text--- From: Gili Date: Wed, 09 M

Re: [Wicket-user] Centering s?

2005-03-09 Thread Gili
Ok, I give up. This totally does not work. Here is my HTML: http://www.w3.org/TR/html4/loose.dtd";> Wicket Examples - helloworld Wicket Examples helloworld

Re: [Wicket-user] Centering s?

2005-03-09 Thread Eelco Hillenius
There several ways of doing this. E.g. (came up with a quick google): http://www.quirksmode.org/css/centering.html Eelco Gili wrote: I've got the border to work but now I want to have it center in the middle of the page. I am not familiar with CSS in this domain: how does one center neste

[Wicket-user] Centering s?

2005-03-09 Thread Gili
I've got the border to work but now I want to have it center in the middle of the page. I am not familiar with CSS in this domain: how does one center nested s within the page? I tried "style: text-align=center" but it did nothing. Gili -