How can I display the full height of a Figma case study embedded in Webflow without it being cut off halfway through the page?

TL;DR
  • Embed Figma design using Webflow's embed element and set iframe width and height to "100%."
  • Use CSS to set the parent container's height to 100% and make the container flexible using flex.
  • Verify responsive design on Webflow and adjust CSS for different breakpoints if needed.

To ensure that your Figma case study displays at full height within a Webflow page, you'll need to adjust some settings to allow the iframe or embed to expand fully. Here's how you can achieve that:

1. Embed Figma Design in Webflow

  • Copy the Embed Code: In Figma, get the embed code for your design.
  • Embed in Webflow: Use Webflow's Embed element to paste this code where you want the project to appear on your page.

2. Adjust Embed Settings

  • Set Height and Width in Embed Code: Ensure the iframe includes appropriate height and width attributes. Modify attributes to width="100%" and height="100%" to allow dynamic sizing.
  • Use CSS to Style the Embed: You can add custom CSS in Webflow to ensure the embed adjusts:
  • Set Parent Element to 100% Height: Ensure the section or div containing the embed is set to height: 100vh or an appropriate pixel value to fit your layout.
  • Flexible Container: Ensure the element is flexible, such as using div set to display: flex with flex-direction: column.

3. Check Responsive Design

  • Verify Across Devices: Use Webflow's responsive design tools to ensure the Figma embed scales correctly across different devices, making adjustments as necessary.
  • Adjust Breakpoints: Customize CSS for different breakpoints if the embed appears cut off on certain devices.

Summary

To display your full-height Figma case study in Webflow without it getting cut off, embed it using the correct dimensions, ensure parent container styles are set to support full height, and verify design responsiveness.

Rate this answer

Other Webflow Questions