html - Why there is a vertical scroll on this html5 page? -


why there vertical scroll on html5 page:

<!doctype html> <html><head>   <style>     html, body {       margin: 0;       padding: 0;       border: 0;       outline: 0;       width: 100%;       height: 100%;     }     svg {       width: 100%;       height: 100%;     }   </style> </head><body>   <svg></svg> </body></html> 

svg inline element img or span, not sure bug or using display: block; fix issue

svg {    display: block; } 

demo


Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -