Answers for "show image on full screen html"

CSS
0

bootstrap create full screen background image

.wrapper{background: url('/assets/64531/green_suburb.jpg') no-repeat   center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;}
Posted by: Guest on May-04-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 "show image on full screen html"

Browse Popular Code Answers by Language