Reputation: 543
Look at this image
The picture is showing a FlowPanel that is holding many Labels. If there are more labels then the labels will flow into next row.
However, as you see, there is no gap between rows in this flowpanel.
.flowPanel{
spacing:3px;
}
The above css didn't work.
So, how to make the gap between rows in this flowpanel to 3px in CSS in GWT?
Upvotes: 0
Views: 216
Reputation: 5364
You need to apply margin-bottom
for these elements. They should be display:inline-block
(or display:inline-block
with float:left
) for this to work.
Upvotes: 1