The design and technical process of ensuring a website functions correctly, displays appropriately and provides a high-quality user experience across all screen sizes and devices — from desktop monitors to laptops, tablets and smartphones — adapting layout, typography, navigation and interactive elements to suit each context.
Google uses mobile-first indexing — ranking websites based primarily on their mobile version. More than 60% of UK internet traffic comes from mobile devices. A website that performs poorly on mobile loses both search engine rankings and a majority of its potential audience. Mobile quality is now a fundamental commercial requirement.
Responsive design uses fluid grids and CSS media queries so a single codebase adapts fluidly to any screen width. Adaptive design serves distinctly different layouts at specific breakpoints, sometimes with separate mobile templates. Responsive design is the current standard — it is more maintainable and better supported by Google.
Google’s performance metrics assessed specifically on mobile: Largest Contentful Paint (LCP — how quickly the main content loads), Interaction to Next Paint (INP — how quickly the site responds to interaction) and Cumulative Layout Shift (CLS — whether the layout jumps as the page loads). Poor mobile Core Web Vitals directly affect Google rankings.
Tap targets that are too small (buttons and links under 48px touch area), text too small to read without zooming, content wider than the screen (horizontal scrolling), intrusive pop-ups that cover most of the mobile screen, slow loading on mobile network conditions and navigation menus that don’t work correctly on touch.
Google Search Console’s Mobile Usability report (identifying pages with specific mobile issues), Google PageSpeed Insights (mobile-specific performance scores), manual testing on real devices across iOS and Android, Chrome DevTools device emulation for responsive layout checking and Google’s Lighthouse audit for comprehensive mobile quality assessment.
Mobile-first design starts with the mobile layout and progressively enhances for larger screens. Retrofitting mobile means designing for desktop first and then attempting to squeeze the design onto smaller screens. Mobile-first produces better mobile experiences because every design decision is made with the smallest screen constraints in mind from the outset.
Touch requires larger interactive targets (minimum 44–48px), cannot rely on hover states (touch has no hover equivalent), swipe gestures replace scroll and navigation behaviours, and tap precision is lower than cursor precision. Mobile design must ensure all interactive elements are reachable with a thumb and respond visibly to touch.
An HTML tag in the page head that instructs the browser how to control the page’s dimensions and scaling on mobile devices. Without it, mobile browsers render the page at desktop width and scale it down, making text tiny and requiring pinch-zoom to read. Every page must include a correctly configured viewport meta tag.
Images are typically the largest page elements and the primary contributor to slow mobile load times. Mobile optimisation requires: serving appropriately sized images for each screen width (using srcset), using modern formats (WebP, AVIF), lazy loading images below the fold and avoiding layout shifts caused by images loading without defined dimensions.