Created
May 19, 2023 10:03
Responsive Image
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>Responsive Images</title> | |
<link rel="stylesheet" href="./style.css" /> | |
</head> | |
<body> | |
<div class="wrapper"> | |
<div class="img"></div> | |
</div> | |
</body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* { | |
margin: 0; | |
padding: 0; | |
} | |
.wrapper { | |
width: 100%; | |
} | |
.wrapper .img { | |
background: url("./img-1.jpg") no-repeat center; // keep the image in root folder with same name | |
width: 100%; | |
padding-top: 34.81%; | |
background-size: cover; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment