How to Decrease the Indent for Text by One Level
How to Decrease the Indent for Text by One Level
Decreasing an indent means moving text to the left. You pushed something in too far, or the outline structure calls for less indentation. Here's how to fix it across the tools people actually use.
Microsoft Word
You've got three reliable methods:
- Keyboard shortcut: Press Shift + Alt + Left Arrow (Windows) or Shift + Option + Left Arrow (Mac). This decreases the indent by one level instantly.
- Decrease Indent button: Find it in the Home tab under the Paragraph section. It's the arrow pointing left with lines behind it. Click it once to move the text left one level.
- Ruler: Drag the left indent marker (the rectangle at the bottom of the ruler) leftward. The first-line indent marker (the hanging flag) moves with it.
Google Docs
Same principle, different keys:
- Keyboard shortcut: Shift + Alt + Left Arrow (Chrome OS/Windows) or Shift + Option + Left Arrow (Mac). Identical to Word.
- Toolbar: Click the Decrease indent icon in the formatting toolbar. It looks like a box with an arrow pointing left.
- Menu: Go to Format → Align & Indent → Indentation options. Adjust from there if you need precise control.
HTML and CSS
If you're dealing with code, indents work differently:
- In your editor: Select the text and press Shift + Tab. This removes one tab or spaces' worth of indentation per press.
- In CSS: If you set
padding-leftormargin-lefton an element, decrease the pixel value. For example, changepadding-left: 40px;topadding-left: 20px;
Markdown
Markdown doesn't have built-in indent controls like word processors. Your options:
- Manual removal: Delete spaces or tabs at the start of each line.
- Bulk edit: Select multiple lines in your editor and use Shift + Tab to decrease all at once.
Quick Reference Table
| Tool | Keyboard Shortcut | Other Method |
|---|---|---|
| Microsoft Word | Shift + Alt + Left Arrow | Decrease Indent button |
| Google Docs | Shift + Alt + Left Arrow | Format menu |
| HTML/CSS editors | Shift + Tab | Manually remove spaces/tabs |
| Markdown | Shift + Tab | Manual space deletion |
Common Problems
The shortcut isn't working? Check if another application has claimed that hotkey. Some accessibility tools or language switchers override standard shortcuts.
Nothing is happening? You might already be at the left margin. Indent can't go further left than the page edge.
Multiple levels at once? Hold the shortcut key combination and keep pressing. Each press removes one level until you hit the margin.
Getting Started
Pick your tool from the list above. Press the shortcut. Done. If you're in a word processor, the visual feedback is immediate. If you're in code, save and preview to confirm.