DockLayoutPanel/SimpleLayoutPanel - Css padding

2012-09-18 Thread Marco
Hello, i have the problem that the css padding is not working for me, the margin and background-color does. Here a simple example to show the problem. Has anybody an idea where the problem is? Thx a lot Marco .test { margin: 4px; padding: 20px; background-color: Lime; } public class GwtTe

Re: DockLayoutPanel/SimpleLayoutPanel - Css padding

2012-09-18 Thread Jens
SimpleLayoutPanel stretches its child to fill the whole area. It does so by using absolute positioning with top, left, bottom, right: 0px (see SimpleLayoutPanel.setWidget() source code). Thats why your padding does not have any effect. -- J. -- You received this message because you are subscr