Answers for "full width image"

0

body width full

body {
    min-width: fit-content;
}
Posted by: Guest on August-14-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
0

full size img

.largeartwork {
    width: 300px;
    height: 300px;
    border: 3px solid black;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}
Posted by: Guest on September-21-2021

Browse Popular Code Answers by Language