Created
May 19, 2023 10:03
-
-
Save alamindevms/3d4de92e85d6e853eec9c65ef204d408 to your computer and use it in GitHub Desktop.
Responsive Image
This file contains hidden or 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 hidden or 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