I need elements inside a div to be outside of their div for different screen sizes.
I currently have the html repeated and am hiding it in certain viewports, this obviously isn't ideal but I'm not sure if there's another way to do it.
Here's the html desktop and tablet
<div class="container">
<div class="one">
<p>Content 1</p>
</div>
<p>Content 2</p>
</div>
Here's the html needed for mobile
<div class="container">
<p>Content 1</p>
<p>Content 2</p>
</div>
This is so I can use flexbox order on all the items within the container div
Question&Answers:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…