I have the following HTML
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
<title>
</title>
</head>
<body>
<div>
<img src="0.jpg" width="50%">
<img src="1.jpg" width="50%">
</div>
</body>
</html>
I expect the 2 images stay at same row. But they don't
I have to tweak the code to
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
<title>
</title>
</head>
<body>
<div>
<img src="0.jpg" width="49%">
<img src="1.jpg" width="50%">
</div>
</body>
</html>
I have tested Chrome/ Edge/ Firebox they both yield the same outcome.
May I know how I can fix such? Thanks.