Home > Article > Web Front-end > Can CSS Force Line Breaks After Every Word Without Modifying Width?
In the pursuit of creating a multilingual website that adheres to a specific styling, a developer encounters a challenge. The site owner, who is assisting with translation, lacks technical proficiency, potentially leading to modifications in the data. This raises concerns about preserving line breaks essential to the site's design. Therefore, the question arises: does CSS offer a solution beyond modifying width to enforce line breaks after every word?
Solution
While PHP provides a straightforward solution, the inquiry focuses on uncovering a potential CSS workaround. The key lies in controlling the spacing between words. By leveraging the word-spacing property and specifying a value greater than the parent element's width, it becomes possible to force line breaks after each word.
Here's an example CSS code that accomplishes this:
.one-word-per-line { word-spacing: <parent-width>; }
This ensures that even a single letter will break to a new line, as long as the parent element's width is wide enough.
To further enhance this approach, the following CSS rules can be applied to the target element:
.your-classname{ width: min-intrinsic; width: -webkit-min-content; width: -moz-min-content; width: min-content; display: table-caption; display: -ms-grid; -ms-grid-columns: min-content; }
These combined CSS properties force browser rendering to adhere to word boundaries, breaking the text into separate lines. This method is compatible with major browsers, including Chrome, Firefox, Opera, and IE7 .
The above is the detailed content of Can CSS Force Line Breaks After Every Word Without Modifying Width?. For more information, please follow other related articles on the PHP Chinese website!