Currently facing an issue with removing margins in bootstrap. I am looking to set up two graphics that indicate the under construction status of the page - one for desktop and one for mobile devices.
This is what I have tried so far:
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="c2bdb6b6ad9e90909184899cb7afb7afc2">[email protected]</a>/dist/css/bootstrap.min.css">
<style>
body,
html {
margin: 0;
padding: 0;
}
.full-width-img-container {
margin: 0;
padding: 0;
}
.full-width-img-container .row {
margin: 0;
padding: 0;
}
.full-width-img {
width: 100%;
}
@media (min-width: 992px) {
.full-width-img {
width: 100vw;
}
}
</style>
<title>Under Construction Page</title>
</head>
<body>
<div class="container-fluid full-width-img-container">
<div class="row">
<div class="col">
<img src="img/small.jpg" class="img-fluid d-block d-lg-none full-width-img" alt="small graphic">
<img src="img/big.jpg" class="img-fluid d-none d-lg-block full-width-img" alt="big graphic">
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="3e5151504b68667061704526525d525d5c">[email protected]</a>/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>
By the way, any recommendations on the ideal graphic sizes for desktop and mobile screens?