Can anyone explain why there is a strange blank space under the body
tag in mobile view on Chrome (other browsers like Firefox and Internet Explorer display it correctly)?
Here is the simple code that I am using:
<html>
<meta name="viewport" content="width=device-width, initial-scale=1">
<head></head>
<style>
body{
margin: 0;
padding: 0;
height: 100%;
display: flex;
width: 500%;
background: pink}
</style>
<body>
</body>
</html>
Attached image for reference: