} else if (_fragments.size() == 1) {
ICSSStyle style = getCSSStyle();
int minWidth = 0, minHeight = 0;
// try to see whether there is any designer specified min size
ITagEditInfo info = (ITagEditInfo) style
.getAdapter(ITagEditInfo.class);
if (info != null) {
minWidth = info.getMinWidth();
minHeight = info.getMinHeight();
}
FlowBox box = (FlowBox) _fragments.get(0);
if (minWidth > box._width) {
box._width = minWidth;
}