You can reverse the order of grid items for tablet and mobile devices in Webflow by using the grid's auto-placement settings or manual placement overrides for each breakpoint.
1. Use Manual Grid Area Placement per Breakpoint
- Select the Grid on your canvas.
- In the Layout panel, switch to the Tablet or Mobile breakpoint using the top navigation bar.
- Switch the grid layout from Auto to Manual by clicking the Edit Grid button.
- Drag each grid item to a new cell position in reverse order.
- Close the grid editor when done.
This method gives you full control and does not affect the desktop layout.
2. Use Flexbox (Alternative Method)
If you're not tied to the Grid layout, you can:
- Convert the parent container to Flex Layout.
- In the Tablet or Mobile breakpoint, set Direction: Vertical and Reverse: Wrap Reverse or manually reorder items.
- Use the Order property in the Style panel to customize item sequence per breakpoint.
This is useful if the layout does not require the complexity of a Grid.
3. Copy and Hide Method (Not Ideal)
As a last resort, you can:
- Duplicate the grid section.
- Reverse the order in the duplicated version for mobile.
- Use the Display setting to show the appropriate version only on certain breakpoints.
This increases page weight and is generally discouraged unless necessary.
Summary
To reverse grid item order on mobile or tablet in Webflow, edit the grid manually per breakpoint using the grid editor. Alternatively, switch to a Flex layout and use the Order or Wrap Reverse settings for responsive control.