Answers for "how to fit image to full screen in html"

CSS
3

html background image fit to screen

body {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
Posted by: Guest on May-11-2020
0

HTML Image full screen width

<!DOCTYPE html>
<html>
<head>	
  
	<style>
		body{ margin:0px }
		div#middle > div{ float:left; width:100%; }
		div#middle > div > div > img{ width:100%; }
	</style>
</head>

<body>
  <div id="middle">
		<div>
			<div>
				<img src="example.jpg" alt="example">
			</div>
		</div>
	</div>
 </body>
</html>
Posted by: Guest on June-13-2020

Code answers related to "how to fit image to full screen in html"

Browse Popular Code Answers by Language