Some themes center text paragraphs between the left and right placeholder borders.

You can customize how text fits in text placeholders and text boxes. By default:

  • Text automatically shrinks to fit a text placeholder.
  • A newly created text box automatically resizes to fit text.

You can change autofit settings in: 

  • Slides preferences 
  • The Format options sidebar
  • The menu next to each text box

Change autofit preferences for new text placeholders & text boxes

Important: Autofit for new text placeholders and text boxes changed in January 2021. Text placeholders and text boxes created before that were not affected. Changes to preferences will affect only new content created after the change.

  1. Open a presentation in Slides.
  2. Go to Tools
    Some themes center text paragraphs between the left and right placeholder borders.
     Preferences.
  3. Check “Use custom autofit preferences.”
  4. Select a text placeholder or text box. The text placeholder or text box you select applies to new presentations.

Change autofit settings for a text box

  1. Open a presentation in Slides.
  2. You have a few ways to open format options for text fitting:
  3. Select a new setting for text in the box:
    • Do not autofit.
    • Shrink text on overflow. This is the default for theme text placeholders.
    • Resize shape to fit text. This is the default for text boxes.

How to use Google Slides
Change the theme, background, or layout in Google Slides
Insert and arrange text, shapes, diagrams, and lines

Was this helpful?

How can we improve it?

The text-align CSS property sets the horizontal alignment of the inline-level content inside a block element or table-cell box. This means it works like vertical-align but in the horizontal direction.

Try it

Syntax

/* Keyword values */
text-align: start;
text-align: end;
text-align: left;
text-align: right;
text-align: center;
text-align: justify;
text-align: justify-all;
text-align: match-parent;

/* Character-based alignment in a table column */
text-align: ".";
text-align: "." center;

/* Block alignment values (Non-standard syntax) */
text-align: -moz-center;
text-align: -webkit-center;

/* Global values */
text-align: inherit;
text-align: initial;
text-align: revert;
text-align: revert-layer;
text-align: unset;

The text-align property is specified in one of the following ways:

  • Using the keyword values start, end, left, right, center, justify, justify-all, or match-parent.
  • Using a <string> value only, in which case the other value defaults to right.
  • Using both a keyword value and a <string> value.

Values

start

The same as left if direction is left-to-right and right if direction is right-to-left.

end

The same as right if direction is left-to-right and left if direction is right-to-left.

left

The inline contents are aligned to the left edge of the line box.

right

The inline contents are aligned to the right edge of the line box.

center

The inline contents are centered within the line box.

justify

The inline contents are justified. Text should be spaced to line up its left and right edges to the left and right edges of the line box, except for the last line.

justify-all Experimental

Same as justify, but also forces the last line to be justified.

match-parent

Similar to inherit, but the values start and end are calculated according to the parent's direction and are replaced by the appropriate left or right value.

<string> Experimental

When applied to a table cell, specifies the alignment character around which the cell's contents will align.

Accessibility concerns

The inconsistent spacing between words created by justified text can be problematic for people with cognitive concerns such as Dyslexia.

  • MDN Understanding WCAG, Guideline 1.4 explanations
  • Understanding Success Criterion 1.4.8 | Understanding WCAG 2.0

Formal definition

Initial valuestart, or a nameless value that acts as left if direction is ltr, right if direction is rtl if start is not supported by the browser.
Applies toblock containers
Inheritedyes
Computed valueas specified, except for the match-parent value which is calculated against its parent's direction value and results in a computed value of either left or right
Animation typediscrete

Formal syntax

text-align = 
start |
end |
left |
right |
center |
justify |
match-parent |
justify-all

Examples

Start alignment

HTML

<p class="example">
  Integer elementum massa at nulla placerat varius. Suspendisse in libero risus,
  in interdum massa. Vestibulum ac leo vitae metus faucibus gravida ac in neque.
  Nullam est eros, suscipit sed dictum quis, accumsan a ligula.
</p>

CSS

.example {
  text-align: start;
  border: solid;
}

Result

Centered text

HTML

<p class="example">
  Integer elementum massa at nulla placerat varius. Suspendisse in libero risus,
  in interdum massa. Vestibulum ac leo vitae metus faucibus gravida ac in neque.
  Nullam est eros, suscipit sed dictum quis, accumsan a ligula.
</p>

CSS

.example {
  text-align: center;
  border: solid;
}

Result

Example using "justify"

HTML

<p class="example">
  Integer elementum massa at nulla placerat varius. Suspendisse in libero risus,
  in interdum massa. Vestibulum ac leo vitae metus faucibus gravida ac in neque.
  Nullam est eros, suscipit sed dictum quis, accumsan a ligula.
</p>

CSS

.example {
  text-align: justify;
  border: solid;
}

Result

Specifications

Specification
CSS Logical Properties and Values Level 1
# text-align
CSS Text Module Level 3
# text-align-property

Browser compatibility

BCD tables only load in the browser

See also

Which of the following are types of placeholders?

There are three main types of placeholders:.
Dimension Placeholders..
Parameter Placeholders..
Other Placeholders..

Which command in PowerPoint help to break an illustration into its component objects?

Ungrouping SmartArt graphics With a SmartArt graphic selected, simply ungroup twice (CTRL + SHIFT + G on your keyboard) and just like a Metafile, the SmartArt graphic will break down into normal shapes, lines and text boxes.

Which of the following SmartArt layout types is used to create an organizational chart?

A hierarchy layout can help you create an organisation chart.

Which of the following screen elements is displayed below the Slide pane and allows you to type additional slide information?

Notes Page view The Notes pane is located under the Slide pane. You can type notes that apply to the current slide.