Strike Through Keyboard Shortcut: Master Text Formatting Fast

Learn how to use strike through keyboard shortcut across popular editors and formats. This guide covers Windows and macOS patterns, Markdown, HTML, and common pitfalls for efficient text formatting.

Shortcuts Lib
Shortcuts Lib Team
·5 min read
Strike-Through Shortcuts - Shortcuts Lib
Photo by JamesDeMersvia Pixabay
Quick AnswerDefinition

A strike through keyboard shortcut toggles the strikethrough formatting on selected text. It is a quick, cross‑app technique used in word processors, editors, and markdown environments. Since shortcuts vary by app and platform, you’ll typically find it under the Format menu or use a dedicated key combo on Windows and macOS. The shortcut helps you annotate revisions, indicate deletions, or signal obsolete content without retyping. Shortcuts Lib emphasizes consistency: pick one pattern for your most-used apps and practice across documents to minimize context switching.

What is a strike through keyboard shortcut and why it matters

Strike through is a text decoration that signals cancellation, revision, or emphasis. A strike through keyboard shortcut provides a fast toggle to apply or remove this formatting without lifting your hands from the keyboard. According to Shortcuts Lib, mastering these shortcuts across platforms reduces context switching and speeds up writing and editing tasks. The exact key combo differs by app and OS, but the underlying pattern is similar: select text, trigger the shortcut, review the rendering, or revert. In Markdown, the syntax for rendering a strike is different (~~text~~) but keyboard shortcuts let you control rendering in rich-text editors. In HTML, the <del> tag represents struck-through content and can be toggled via editors that expose HTML editing modes. In CSS, you can apply text-decoration: line-through; to style elements that represent deleted or marked text. The practical payoff is clear: you can annotate drafts, track edits, and present revisions without clutter or manual caret work.

MARKDOWN
// Markdown representation of strike-through ~~strike this~~
HTML
<del>strike this</del>
CSS
.strike { text-decoration: line-through; }

Patterns by editor: Word processors vs lightweight editors

Different editors expose strikethrough in different places. In Google Docs, you typically toggle via the UI or a platform shortcut; in Microsoft Word, a dedicated keyboard shortcut or menu path is common; in VS Code and other markdown-capable editors, you usually rely on either a plugin or markdown syntax. The consistency lies in the workflow: select text, invoke the strike-through command, and verify the rendered output. If the shortcut isn’t visible, use the editor’s command palette or Format/Font menu to locate “Strikethrough.”

Text
Google Docs (Windows/macOS): Ctrl+Shift+X / Cmd+Shift+X
Text
Word (Windows): Ctrl+5 (often), or via Format > Font > Strikethrough
MARKDOWN
VS Code or Markdown editors (via extension): use the Markdown syntax ~~text~~ in the source

Using strike-through across formats: Markdown, HTML, CSS

Strike-through formatting can be applied in several formats. In Markdown, you wrap text with double tildes to render a strike in render view. In HTML, the semantic tag <del> conveys deletion and struck-through styling, and CSS can reinforce it with text-decoration. These patterns are interchangeable depending on your pipeline: draft in Markdown, render in HTML, and style with CSS for consistent presentation. Knowing these formats helps you migrate ideas across documentation styles without losing the visual cue of a strike.

MARKDOWN
Here is ~~struck~~ text in Markdown.
HTML
<p><del>struck</del> text</p>
CSS
.delayed { text-decoration: line-through; }

Editor-specific workflows: Word, Google Docs, VS Code

Word users often rely on a dedicated shortcut or the Font dialog. Google Docs tends to favor a direct shortcut (where supported) or the Format menu. In VS Code, you’ll typically manage strike-through as part of Markdown rendering or via a plugin when writing in plain text. The key steps are universal: select the target text, trigger the strike-through command, and confirm the text rendering. If you rely on a consistent pattern across editors, your editing speed increases and your revision marks stay visually clear.

Text
Word: Select text → Ctrl+5 (or Format > Font > Strikethrough)
Text
Google Docs: Select text → Ctrl+Shift+X (Windows) / Cmd+Shift+X (Mac)
Text
VS Code (Markdown): Ensure a Markdown extension is installed to render ~~text~~

Troubleshooting and pitfalls

If a strike-through shortcut doesn’t work, it’s usually due to the editor not exposing a keyboard mapping for strikethrough, a conflicting global shortcut, or a mode that disables formatting commands. Always verify the app’s shortcut list in Help or Settings. When collaborating across teams, document the agreed-upon shortcut and consider adding a small legend to the document template. For Markdown users, remember that the source uses ~~text~~, while the render target may require a specific extension or viewer to display the strike-through properly.

MARKDOWN
Input: This is ~~struck~~ text
HTML
<p>This is <del>struck</del> text</p>

Best practices and optimization

To maximize efficiency, pick a cross‑editor shortcut pattern and reuse it consistently. If you primarily work in Markdown, rely on the ~~syntax~~ in source and use a viewer that renders it. For documents that will be exported to Word or Google Docs, ensure the chosen method yields the same visual result across targets. Finally, keep a small reference that lists where the shortcut lives in your top three editors so you don’t hunt for it mid-edits.

MARKDOWN
Recommended: Use the Markdown syntax ~~text~~ in source, render in your preferred viewer
CSS
.strike { text-decoration: line-through; }

Quick start cheat sheet

A succinct cheat sheet saves you time during heavy editing sessions. Remember the core flow: select text, apply strike-through via shortcut or menu, review rendering, save. In Markdown, rely on ~~text~~; in HTML, use <del> or CSS; in rich-text editors, use the toolbar or a dedicated key combo. Practice on a sample paragraph to become fluent and reduce context switching over time.

MARKDOWN
Sample: ~~archived~~ paragraph
HTML
<p><del>archived</del> paragraph</p>
CSS
.strike { text-decoration: line-through; }

Steps

Estimated time: 15-20 minutes

  1. 1

    Identify target text

    Open your document in the editor of choice, locate the phrase or words you want to strike through, and select them with your cursor. Ensure you’re in a mode that supports text formatting (not plain text mode).

    Tip: Use a short sample paragraph to test your shortcut before applying it to a full document.
  2. 2

    Activate the strike-through

    Trigger the editor's strike-through command via the keyboard shortcut or the menu path. If your editor lacks a direct shortcut, explore the Format/Font/Strikethrough option in the toolbar.

    Tip: If two shortcuts exist (Windows vs Mac), pick the one you’ll consistently use and document the choice.
  3. 3

    Review rendering

    Check that the selected text renders with the strike-through style. Switch to a print or export view to ensure the formatting remains visible in different contexts.

    Tip: Toggle the feature off to verify you didn’t accidentally format more text than intended.
  4. 4

    Cross-check across formats

    If you work across Markdown, HTML, and CSS, verify the corresponding representation in each format. Ensure you know how the target render will display the strike.

    Tip: Keep a small side note mapping the syntax to the visual outcome.
  5. 5

    Document your convention

    Add a short note in your project’s style guide about strike-through usage and the chosen shortcut pattern. This prevents drift when team members edit the same content.

    Tip: Consistency reduces confusion in collaborative environments.
Pro Tip: Memorize cross‑platform patterns to minimize context switching.
Warning: Some editors use different shortcuts or require enabling a syntax/extension for strikethrough.
Pro Tip: Use the editor's command palette to discover the strike-through command when hidden.
Note: In Markdown, the strike is written as ~~text~~; in HTML, use <del> or <s> as needed.

Prerequisites

Required

  • A text editor or editor suite (Word, Google Docs, VS Code, or a Markdown editor)
    Required
  • Basic keyboard familiarity and navigation
    Required
  • Understanding of at least one formatting format (Markdown, HTML, or CSS)
    Required

Keyboard Shortcuts

ActionShortcut
Toggle strike-through (Docs-style)Google Docs, SheetsCtrl++X

Questions & Answers

What is a strike through keyboard shortcut and where is it used?

A strike through keyboard shortcut toggles the strikethrough formatting on the selected text. It is used across editors—from word processors to Markdown editors—to indicate deletions, revisions, or edits. The exact keys vary by app and platform, so you’ll often rely on the Format menu or a specific key combination.

A strike through shortcut toggles the line through text to show edits or deletions. It differs by app, so check your editor’s shortcut guide.

Which editors support strikethrough shortcuts?

Most modern editors, including Google Docs, Microsoft Word, and many Markdown editors, support strike-through either via a keyboard shortcut or a menu option. Always verify the current version’s documentation since shortcuts can change with updates.

Most major editors support strike-through, but shortcuts can change with updates, so check the specific editor’s help.

How do I apply strike-through in Markdown vs HTML?

In Markdown, wrap the target text with double tildes: ~~text~~. In HTML, use the <del> tag or the <s> tag for a presentation-style strike-through. Choose the method that matches your document format and rendering engine.

In Markdown, use ~~text~~. In HTML, use <del>text</del> or <s>.

What should I do if the shortcut doesn’t work?

First verify the editor’s shortcut list and ensure no conflicts with global shortcuts. If needed, use the editor’s menu path to apply strikethrough. Consider enabling an extension or plugin that provides reliable strikethrough support.

Check the editor’s shortcut list; if in doubt, apply strikethrough from the menu or install a suitable extension.

Can I customize strike-through shortcuts?

Yes, many editors let you customize keyboard shortcuts. Look for Shortcuts/Keybindings in settings and map a preferred combo to the strikethrough command. Keep your custom mapping consistent across the tools you use most.

You can customize shortcuts in many editors; map a single combo you’ll use everywhere.

Main Points

  • Memorize cross‑editor shortcuts for common editors.
  • Use Markdown/HTML/CSS representations for portability.
  • Verify rendering in the target output view.
  • Document and standardize your shortcut usage.

Related Articles