1
I am developing a web application in jsp and Servlet and put an image in a bootstrap column <div class="col-11"></div>
so I put the image in the center of the screen using themargin-left
.But by decreasing the page width the image cuts
Image in normal page width
Image cut with page width decreased
<div class="row">
<div class="col-11"><img src="imagens/imagem1.JPG"class="imagem_principal" id="desconto" alt="desconto"></div>
</div>
#desconto{
width: 90%;
height: 60px;
margin-top: 30px;
margin-left: 70px;
}
thanks Oeslei was just that
– User1999