Untitled

                Never    
HTML
       
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<body>
    
    <div class="container">
        <div class="square-one">
            Some text
        </div>
        <div class="square-two">
            some text 2
    </div>
    </div>

    <style>
    .square-one, .square-two{
        background:red;
        height:100px;
        width:200px;
        flex-basis:200px;
    }
    .square-two{
        background:blue;
    }

    .container{
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        height: 800px;
        background:green;
        align-items: flex-end;
    }

    @media only screen and (max-width: 768px) {
  /* For mobile phones: */
        .square-one{
           order:1;
        }
        .square-two{
            order:2;
        }
        .container{
            
        }
    
  }

    </style>
</body>
</html>

Raw Text