Bug

Here, there is no gap in between the ends of browser and the page.

Here, in my localhost:4200, there is a humiliating gap (margin) in between the ends of browser and the material toolbar.
Angular Version: 4.2.5
OS: Windows 10 Anniversary Update
Angular Material Version: 2.0.0-beta.7
Chrome Version: 59.0.3071.115
Node: v8.1.2
npm: v5.0.3
Did you put md-toolbar in md-sidenav-container?
Also, you have to add a fullscreen attribute to md-sidenav-container.
As so:
<md-sidenav-container fullscreen>
<md-toolbar>Content</md-toolbar>
</md-sidenav-container>
Alternatively, add the following CSS:
body {
margin: 0;
}
Do you have any live demo?
Thanks
It worked!!!
not working here, same problem as @YuilTripathee.
This issue has been automatically locked due to inactivity.
Please file a new issue if you are encountering a similar or related problem.
Read more about our automatic conversation locking policy.
_This action has been performed automatically by a bot._
Most helpful comment
Did you put
md-toolbarinmd-sidenav-container?Also, you have to add a
fullscreenattribute tomd-sidenav-container.As so:
Alternatively, add the following CSS: