I'm trying to create a LandingPage
but the first image is being cropped
I'm using this CSS
:
.parte1 {
min-height: 100%;
max-height: 100%;
padding-top: 50px;
padding-bottom: 50px;
text-align: center;
color: #f8f8f8;
background-image: url('Images/Fundo/image1.png');
background-repeat: no-repeat;
background-size: cover;
}
and this div
:
<div class="parte1 section">
</div>
and there the image appears cut like this:
What could be wrong ?