Knowing how to line break correctly improves readability in poetry, code, and prose. A line break occurs where a line of text ends and a new line begins, and small choices here affect clarity, rhythm, and accessibility. This guide explains core rules and common exceptions across writing, coding, and design contexts, with examples that remain useful over time. Focus on consistency, context, and audience expectations when deciding where and why to break a line.
Line Break Basics and Punctuation
At the sentence level, a line break is the visual split where one line ends and the next begins. In edited prose, line breaks usually follow standard punctuation and grammar rather than arbitrary spacing. Understand the difference between end-stop line breaks, where a period, semicolon, or colon naturally occurs, and mid-line breaks, where a sentence continues without terminal punctuation. Keep phrases and clauses coherent across line endings, and avoid splitting close word pairs or interrupting modifiers whenever readability allows.
When to Break After Terminal Punctuation
Break after a period, question mark, or exclamation point when moving to a new line, because these marks already signal a full stop. In a paragraph, starting a new line after terminal punctuation maintains logical units and cue readers to a completed thought. Reserve single-sentence paragraphs for emphasis or structure, and align with your style guide for dialogue, lists, and headings.
Mid-Clause and Mid-Phrase Breaks
Avoid breaking directly before a comma or conjunction that belongs to the following clause. Preferred line break locations include after conjunctive adverbs (however, therefore, meanwhile) and before relative pronouns that introduce a new clause. When in doubt, prioritize clarity: a reader should not need to reread to understand where the syntactic unit resumes on the next line.
Line Break Rules in Poetry
Poetry treats the line as a fundamental unit of rhythm, emphasis, and meaning, so decisions about how to line break are deliberate artistic choices. Lineation can create pauses, speed, or surprise independent of grammar. Consider enjambment, where a sentence continues past the line ending, versus end-stopped lines with clear pauses at natural punctuation. The visual form and sound patterns should align with your expressive intent.
Metrics and Techniques in Poetic Breaks
- Enjambment: continuation of syntax beyond the line ending to create momentum.
- End-stopped lines: pauses at the line end, often marked by punctuation.
- Caesura: an internal pause within a line, distinct from the line break.
- Meter and rhyme: line length choices can support or contrast metrical patterns.
Use breaks to control pacing, sound, and focus. Revisit line choices during revision to ensure each break serves meaning and rhythm rather than habit or arbitrary constraints.
Line Breaks in HTML and Web Design
On the web, a line break can be semantic or presentational. In HTML, the <br> element creates a hard line break, forcing a new line in browsers. Use <br> sparingly to preserve accessibility and avoid disrupting responsive layouts. Prefer CSS properties such as white-space, margin, and display for consistent spacing and break behavior across devices.
Controlling Breaks with CSS
| Property | Common Values | Purpose |
|---|---|---|
| word-break | normal, break-word, keep-all | Handling overflow in non-CJK text |
| overflow-wrap | normal, break-word | Allowing long words to break within words |
| white-space | normal, nowrap, pre, pre-wrap | Controlling whitespace and line stacking |
Use these properties to manage line length and break behavior in content containers, tables, and code blocks. For multilingual text, especially mixed scripts, test line-breaking behavior to avoid awkward orphans or widows. Consistent margins and container widths reduce the need for manual <br> insertions.
Citation and Reference Line Breaks
Citation styles specify how to format line breaks in references and bibliographies. In many style guides, a hanging indent aligns subsequent lines under the first line of each entry, improving scannability. When a long title or URL must break, prefer logical breakpoints such as after punctuation or between path segments, and avoid splitting identifiers like DOIs mid-string unless needed by display constraints.
Style Guide Patterns for References
- APA and MLA: Use hanging indents and avoid breaking within author names.
- Chicago: Allow breaks after major punctuation in URLs and notes.
- Academic publishers: Follow each journal’s reference style for line breaks in URLs and DOIs.
Check the specific rules for your documentation system to ensure that citations remain accurate and easy to locate across devices.
Accessibility and Line Length Considerations
Readable line lengths reduce eye strain and support diverse readers. Aim for line lengths around 45–75 characters in columns of text, and adjust for larger displays or smaller screens. Break lines before they become unwieldy, and avoid orphan or widow words that isolate single terms at the start or end of a line. Pair line-break decisions with clear typography and responsive layouts for durable readability.
Design Systems and Editorial Workflows
In content management and design systems, define line-break conventions for components such as cards, tables, and headlines. Establish rules for when hard breaks are acceptable versus when CSS should control wrapping. Document exceptions for code snippets, URLs, and multilingual content so that contributors can apply consistent behavior across pages and templates.
Quick Consistency Checks
- Do line breaks preserve meaning and syntactic clarity?
- Are breaks consistent across similar content types?
- Do responsive layouts adapt without creating orphans or widows?
- Do citation and code snippets follow the chosen style guide?
By aligning editorial standards with technical constraints, teams can ensure that line breaks support clarity and usability over time.
Summary and Best Practices
How to line break effectively depends on context, but some principles apply broadly: prioritize readability, respect grammatical units, and match the conventions of your medium and audience. Use punctuation to guide breaks in prose, deliberate lineation in poetry, semantic HTML and CSS on the web, and consistent styling in citations and code. Test across devices and workflows to catch orphans, widows, and style drift, and update standards as layouts and languages evolve.