final CssLayout cl = new CssLayout();
cl.setCaption("CSSLayout");
cl.setStyleName("borders");
cl.setWidth("300px");
cl.setHeight("500px");
cl.addComponent(new TextField("This is its caption",
"This is a textfield"));
cl.addComponent(new TextField("Another textfield caption",
"This is another textfield"));
cl.addComponent(new Button("A button with its own click listener",