I have a html section there I'm using border this is working fine but when I zoom browser then this is displaying white outline issue inside skyBlue border. How to fix white outline issue?
My Code:-
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<style>
* {
margin: 0px;
padding: 0px;
}
.main-container-box {
width: 100%;
margin: 0;
padding: 0 0 0 0;
display: flex;
flex-direction: column;
border: #1B97D5 solid 15px;
border-bottom: 0px;
position: relative;
box-sizing: border-box;
}
.main-container-box img {
width: 100%;
}
</style>
</head>
<body>
<div class="main-container-box">
<img src="https://images.unsplash.com/photo-1543373014-cfe4f4bc1cdf?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxzZWFyY2h8Mnx8aGlnaCUyMHJlc29sdXRpb258ZW58MHx8MHx8&w=1000&q=80" alt="">
</div>
</body>
</html>
