Consider my below html
<html>
<head>
</head>
<body>
<div class="wrapper">
<section class="first">First Content</div>
<section class="second">Second Content</div>
<section class="third">ThirdContent</div>
</div>
</body>
</html>
What I need is to bring the third content to the top in the browser view only by changing the class name not its position in the html Also the changes should preserve responsiveness,
My html is given below
<div class="wrapper">
<section class="third">First Content</section>
<section class="second">Second Content</section>
<section class="first">ThirdContent</section>
</div>