0
Good
i created a page for pc and wanted the order that shows some things to be changed with the css order property, but I n what happens that is not changing the order of the objects, someone can take a look?
Code:
.conti p {
margin-top: 0;
margin-bottom: 0;
margin-left: 0;
margin-right: 0;
padding-left: 10px;
padding-right: 10px;
width: 94%;
line-height: 16px;
font-size: 12px;
float: none;
}
.conti h1 {
text-align: center;
width: 100vw;
height: auto;
font-size: 20px;
}
.texto-conti {
order: 1;
}
.conti-img {
order: 2;
width: 100vw;
height: 200px;
}
.conti {
height: auto;
width: auto;
}
<div class="conti">
<div class="conti-img"></div>
<div class="texto-conti">
<h1>Rio Lis</h1>
<p>O Rio Lis é um rio português que nasce junto da povoação das Fontes, dois quilómetros e meio a Sul da
freguesia de Cortes, a que pertence, ao distrito e concelho da cidade de Leiria. Esta cidade é
banhada
pelas suas águas onde se juntam às do Rio Lena.</p>
<p>A poluição no rio lis que antes era usado para pescar, ensinar crianças a nadar e parcialmente como
água
potável, está a afetar o ambiente bem como os animais em que estão incluídos peixes, patos e gansos
entre outros.</p>
<p>Devido a esta mesma poluição hoje em dia já não é seguro nadar nestas águas nem consumir os peixes
que
nelas tem o seu habitat natural.</p>
</div>
</div>
if you notice I have the first div with order 2 and the second div with order 1 because the goal is that when I go to cell phone the image goes down the texts but I don’t know if there’s anything missing for the property to work, if you can take a look sff.
It worked! And I understood what you meant! Thank you!
– David Mv
@Davidmv cool that good that made sense to you, has display that changes the elements that are inside another element, as is the case of flex, and has display that changes the element with respect to the other elements that are next as is the case of inline-block. tmj
– hugocsl