TabSheet Tab with same width

Hi All,

How can I get the tabs of a tab sheet to be of the same width.

Example :-

 import com.vaadin.ui.Label;
import com.vaadin.ui.TabSheet;

public class MainTabSheet extends TabSheet {
	public MainTabSheet() {
		setWidth("400px");
		addTab(new Label("Order Parts"),"Order Parts");
		addTab(new Label("Help"),"Help");
		
	}
}

The tab takes the width of the caption, how can I make it take 200px for the first tab and 200px for the second tab.

Thanks in Advance.
Divam

You can try with this css :

.v-tabsheet-tabitem .v-caption{
 width:200px !important;
}