How to change the background color of a web page in GWT? I am coding in MVP and using absolute panel as the base panel e.g.
AbsolutePanel absolutePanel;
etc..
absolutePanel = new AbsolutePanel();
absolutePanel.setSize(Window.getClientWidth() + "px", Window.getClientHeight() + "px");
absolutePanel.addStyleName("boardBackground");
initWidget(absolutePanel);
The problem is when I ran the program, there is a white border around the panel, is there other way to color the whole page? Thanks.