正在加载,请稍候…

Lorem Ipsum: History, Uses, and How to Generate the Right Amount

Learn about Lorem Ipsum placeholder text — its history, when to use it, and how to generate words, sentences, or paragraphs.

What Is Lorem Ipsum?

Lorem ipsum is placeholder text commonly used in graphic design, publishing, and web development to fill space before the final content is available. It allows designers and developers to focus on visual layout without being distracted by readable content.

The standard lorem ipsum text begins: "Lorem ipsum dolor sit amet, consectetur adipiscing elit..." and has been used as dummy text in typesetting since the 1500s.

The Origin of Lorem Ipsum

Lorem ipsum comes from Cicero's philosophical work "De Finibus Bonorum et Malorum" (On the Ends of Good and Evil), written in 45 BC. The original Latin passage reads:

"Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit..."

Translation: "Nor is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but occasionally circumstances occur in which toil and pain can procure some great pleasure..."

The lorem ipsum version is a scrambled, altered version of this text. Richard McClintock, a Latin professor at Hampden-Sydney College, traced the origin in 1994 and confirmed it dates back to Cicero. The text became popularized in the 1960s when Letraset published sheets of lorem ipsum for dry-transfer lettering.

Why Use Lorem Ipsum?

Prevents Content Distraction

Human brains are wired to read text, not analyze layout. When reviewing a design, readable content draws attention to what it says rather than how it looks. Lorem ipsum lets viewers evaluate typography, whitespace, and visual hierarchy without getting caught up in content.

Provides Realistic Text Length

"This is placeholder text" doesn't approximate realistic paragraph lengths. Lorem ipsum generates natural-looking blocks of text that simulate real content density.

Universal Convention

Lorem ipsum is universally recognized as placeholder text. Seeing it signals to stakeholders that content is not finalized, preventing premature feedback on wording.

Alternative Placeholder Text Options

Cupcake Ipsum

Food-themed placeholder text: "Cupcake ipsum dolor sit amet. Sesame snaps chocolate bar cake pastry..." Good for food-related projects or when clients need something lighter than Latin.

Corporate Ipsum

Business jargon filler: "Leverage agile frameworks to provide robust synopses for high level overviews..." Useful for corporate and business applications.

Hipster Ipsum

Trendy placeholder text: "Artisan before they sold out vice, vinyl butcher brooklyn..." For creative and lifestyle brands.

Blind Text

Pure visual placeholder without the Latin appearance, useful when clients might be confused by Lorem ipsum.

Actual Content

For user research and final design reviews, real content (even draft content) is always better than placeholder text.

Generating Lorem Ipsum Programmatically

# Using the lorem package in Python
import lorem

# Generate a paragraph
paragraph = lorem.paragraph()

# Generate a sentence
sentence = lorem.sentence()

# Generate n words
words = lorem.words(10)
// Using lorem-ipsum npm package
const LoremIpsum = require('lorem-ipsum').LoremIpsum;
const lorem = new LoremIpsum({
  wordsPerSentence: { max: 16, min: 4 },
  sentencesPerParagraph: { max: 8, min: 4 }
});

const text = lorem.generateParagraphs(3);

Standard Lorem Ipsum Paragraphs

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

Using This Tool

Choose the number of paragraphs, sentences, or words you need. Select options like whether to start with "Lorem ipsum" and the language style (classical Latin, modern Lorem ipsum variants). Copy the generated text with one click.

-> Try the Lorem Ipsum Generator