Reputation: 146
<svg></svg>
It works correctly in Chrome but I cannot seem to get the svg element to fully expand no matter what I try.
Any thoughts?
Upvotes: 5
Views: 6639
Reputation:
You need to give html
a height of 100% as well:
body, html {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
}
Upvotes: 4