Question

I followed the following site to do some layout in dojo: http://dojotoolkit.org/documentation/tutorials/1.7/dijit_layout/ The problem is there's gap between BorderContainer and its children. How to eliminate them?

Was it helpful?

Solution

Set the gutters attribute to false.

new BorderContainer({
    ...
    gutters: false
});
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top