white-space: normal
to ensure text wraps and adjust overflow
if necessary.width: 100%
instead of 100vw
and set a max-width
to prevent horizontal overflow.flex-wrap
if using flexbox to allow text wrapping.word-break: break-word
to prevent overflow from long words.If text is not wrapping within a div in Webflow and is instead expanding vertically in mobile view, it is likely due to CSS properties affecting how the content behaves inside the container. Here’s how to identify and fix the issue.
white-space
and overflow
Propertieswhite-space
is set to normal (not nowrap
), which forces text to wrap.overflow
to visible, hidden, or auto (instead of visible
if necessary).max-width
or width
of the Divwidth
to 100% instead of a fixed pixel size that may not adapt to mobile screens.max-width: 100%
) to prevent excessive growth.display: flex
and flex-wrap
flex-wrap
is set to wrap so content breaks properly instead of forcing a single line.height
(e.g., 200px
), text might overflow vertically.word-break
if Necessaryword-break: break-word
to break overly long words in mobile view.Ensure the text has white-space: normal
, set the div’s width to 100%, enable flex-wrap if using flexbox, use auto height, and adjust padding or word-break settings for better responsiveness.