0
I am developing a simple site with html,css, in case it is necessary I put the code later.
but the point would be I’m using grids with Row and col of bootstrap, when I open from normal Chrome the layout gets all squirrelly it seems like it’s not with the right css, now if I open in an anonymous window the same site or in Mozilla appears right as it should. I’m testing the site locally.
HTML
<div class=" container content-wrapper pro">
<div class=" row" >
<div class="col-t">
<h4 class="card-title">Chave de fenda philips</h4>
<img src="img/p1.jpg" alt="Card image cap">
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<h4 class="card-title">Chave de fenda philips</h4>
<img src="img/p1.jpg" alt="Card image cap">
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
<div class="col-t">
<h4 class="card-title">Chave de fenda philips</h4>
<img src="img/p1.jpg" alt="Card image cap">
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<h4 class="card-title">Chave de fenda philips</h4>
<img src="img/p1.jpg" alt="Card image cap">
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
<div class="col-l">
<h4 class="card-title">Chave de fenda philips lateral</h4>
<img src="img/p1.jpg" alt="Card image cap">
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
</div>
</div>
</div>
<!-- /.content-wrapper -->
<div class="rodape">
<?php
include("footer.php");
?>
</div>
</div>
HEAD
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.5.0/css/font-awesome.min.css">
<!-- Ionicons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/css/ionicons.min.css">
<!-- jvectormap -->
<link rel="stylesheet" href="plugins/jvectormap/jquery-jvectormap-1.2.2.css">
<link rel="stylesheet" href="bootstrap/css/style.css">
<script type="text/javascript" src="bootstrap/js/jquery-3.4.1.min.js"></script>
<script type="text/javascript" src="bootstrap/js/bootstrap.min.js"></script>
CSS
.pro{
padding-top:20%;
}
.col-t{
text-align: center;
margin-left: 2%;
width: 28%;
justify-content: center ;
max-width: 100%;
height: auto;
}
.col-l{
text-align: center;
margin-left: 3%;
width: 36%;
justify-content: center ;
max-width: 100%;
height: auto;
}
.wrapper{
background-color: #ffffff;
margin:2%;
margin-left:5%;
margin-right:5%;
margin-bottom: 0;
width: 90%;
}
.home{
color :black;
height: 100%;
background-color: #D3D3D3;
overflow:auto;
}
"if it is necessary I put the code later", yes, need, read how to elaborate a [mcve] inclusive. If you can post the prints of the respective screens will also help a lot.
– Woss
done placed code and pictures
– Gabriella Selbach
And the prints of the different screens?
– Woss
placed sorry for not having put before
– Gabriella Selbach