Identify Mobile / Tablet / Desktop Using Screen-size in CSS
By OutsourcedContent — on October 20, 2017 Add these to your CSS stylesheet as necessary. CSS to be used only on Mobile devices This CSS will be used when the screen width is less than 576px. @media screen and (max-width: 576px) { .selector { property: value; } } CSS to be used on anything BUT…