I want to have full width responsive image in a container in bootstrap. The size of the image I am using is 800 by 667. When I use the below code, what happens is image is not fully scaled in large screens. can someone help me please?
<div class="myDiv">
<img class="myImage" src="...." >
</div>
Css:
.myDiv {
padding: 0;
}
.myImage {
max-width: 100%;
height: 500px;
}