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

php - cannot display multiple markers in google maps v3 from traceroute result -

php - Boolean search on database with 5 million rows, very slow -

css - Text drops down with smaller window -