diff options
-rw-r--r-- | src/com/vaadin/demo/sampler/features/layouts/CssLayoutsExample.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/vaadin/demo/sampler/features/layouts/CssLayoutsExample.java b/src/com/vaadin/demo/sampler/features/layouts/CssLayoutsExample.java index b7938452da..6df40efeec 100644 --- a/src/com/vaadin/demo/sampler/features/layouts/CssLayoutsExample.java +++ b/src/com/vaadin/demo/sampler/features/layouts/CssLayoutsExample.java @@ -32,7 +32,7 @@ public class CssLayoutsExample extends VerticalLayout { panel.setStyleName("floatedpanel");
panel.setWidth("30%");
panel.setHeight("370px");
- panel.addComponent(new Label("This panel is 30% wide"
+ panel.addComponent(new Label("This panel is 30% wide "
+ "and 370px high (defined on the server side) "
+ "and floated right (with custom css). "
+ "Try resizing the browser window to see "
|