Html – How to expand button to full-width on smaller screen sizes?
I have the following markup: <div class="ml-auto text-right"> <button class="btn btn-next mobile" /> </div> And css: @media screen and (max-width: 576px) { .mobile { width: 100%; margin-left: 0; margin-right: 0; padding-left: 0; padding-right: 0; display: block; text-align: center; } }…