skip to Main Content

move the second div to first position using css

i have one parent div , inside the parent div i have 3 children divs. <div class="parent"> <div class="child1">First</div> <div class="child2">Second</div> <div class="child3">Third</div> </div> For parent i already write below style. .parent { display: grid; grid-template-columns: 1fr 1fr 1fr; }…

VIEW QUESTION
Back To Top
Search