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; }
Comments
Post a Comment