Keyboard Shortcut to Bold Text: Quick Guide 2026

Learn the fastest way to bold text using cross-platform keyboard shortcuts. This guide covers Windows and macOS across common editors and offers practical tips to customize bold shortcuts for efficient typing.

Shortcuts Lib
Shortcuts Lib Team
·5 min read
Quick AnswerDefinition

According to Shortcuts Lib, the universal bold shortcut is Ctrl+B on Windows and Cmd+B on macOS. It toggles bold on the current selection in most word processors, code editors, and rich text fields. If nothing is selected, it typically applies bold to the text you type next in many apps. Practicing this shortcut across apps reduces context switching and speeds up formatting.

Understanding the keyboard shortcut to bold text across apps

The keyboard shortcut to bold text—often written as Ctrl+B on Windows and Cmd+B on macOS—works in a wide range of software, including word processors, note apps, and many web editors. This section explains what the shortcut does, when it applies to a selection, and what users should expect in different environments. In HTML contexts, bold is represented by the <strong> tag, while Markdown uses bold syntax. Modern editors map the keystroke to a formatting command rather than inserting special characters, which means visually bold text is the result rather than raw markup.

HTML
<p><strong>Bold</strong> text</p>
Python
# Pseudo function to toggle bold on a selection def toggle_bold(doc, start, end): selection = doc.get_text(start, end) if doc.is_bold(start, end): doc.remove_bold(start, end) else: doc.apply_bold(start, end)

Common variations across apps include the need to first select text, the possibility of toggling bold with a single keystroke, and the fact that some editors require focusing a text input before the shortcut becomes active. Understanding these nuances helps you rely on the shortcut consistently, regardless of environment.

pythonunistext":false,

Steps

Estimated time: 60-90 minutes

  1. 1

    Identify target apps

    List the editors and environments you use most often (word processors, code editors, and online editors). Confirm that Ctrl/Cmd+B is supported and note any app exceptions. This creates a consistent baseline for practicing the shortcut.

    Tip: Document at least three apps to test cross-platform consistency.
  2. 2

    Practice the basic shortcut on Windows

    Open a document, select a phrase, and press Ctrl+B. Observe whether the selected text becomes bold and whether the bold formatting remains when you type more text.

    Tip: If it doesn’t work, check if the app uses a different keybind for bold or if bold is disabled in a specific field.
  3. 3

    Practice the basic shortcut on macOS

    Repeat the same test using Cmd+B in a macOS editor. Compare how it behaves in a browser-based editor versus a native app.

    Tip: Some editors require focus in the text area before the shortcut takes effect.
  4. 4

    Test in web-based contenteditable fields

    Open a web editor (e.g., Google Docs) and verify that Ctrl+B/Cmd+B bolds text across browser contexts. Note any browser-specific quirks.

    Tip: Browser shortcuts can differ; always test in the target web app.
  5. 5

    Experiment with Markdown/HTML contexts

    Practice bold in Markdown by wrapping text with **stars** and in HTML with <strong>bold</strong>.

    Tip: Remember, visual bold in the editor may map to markup in the underlying format.
  6. 6

    Create a personal remapping plan

    If you frequently switch editors, consider a baseline shortcut plan or a cross-app remap to keep bold behavior consistent.

    Tip: Document the remapping steps so you can reproduce them later.
Pro Tip: Use Ctrl+B or Cmd+B as your default bold shortcut across apps to minimize cognitive load.
Warning: Bold in plain text editors will not persist without markup or formatting support.
Pro Tip: Leverage app-specific shortcuts or remaps to maintain consistency across your toolkit.
Note: Some apps reserve Ctrl+B/Cmd+B for other actions; always verify in the app’s keyboard shortcuts panel.

Prerequisites

Optional

  • Optional: shortcut remapping tool if you plan to customize bold shortcuts (e.g., AutoHotkey on Windows, Keyboard Maestro on macOS)
    Optional

Keyboard Shortcuts

ActionShortcut
Toggle bold on selectionApplies to most editors and word processorsCtrl+B
Bold in a contenteditable fieldCommon in web apps and online editors like Google Docs, Notion, etc.Ctrl+B
Customize bold shortcut (VS Code-like editors)Use app-specific keybindings.json or preferences to remapCtrl+K Ctrl+S to open shortcuts panel and remap

Questions & Answers

What is the keyboard shortcut to bold text on Windows?

On Windows, Ctrl+B toggles bold on the currently selected text in most editors. If nothing is selected, the shortcut generally applies to the text you type next. Some apps may override this behavior, so it’s worth testing in your primary tools.

On Windows, press Ctrl and B to bold the selected text, and it usually applies to the next typed text if nothing is selected.

What is the keyboard shortcut to bold text on macOS?

On macOS, Cmd+B toggles bold on the selected text in most editors. As with Windows, some apps might vary, so check the keyboard shortcuts panel in your favorite apps to confirm.

On Mac, press Command and B to bold the selected text in most editors.

Can I customize the bold shortcut?

Yes. Many editors allow remapping through their preferences or keybindings JSON. You can also use system-wide tools like AutoHotkey (Windows) or Keyboard Maestro (macOS) to create consistent bold behavior across apps.

Yes, you can customize the bold shortcut in many apps or with system-wide tools.

Why doesn’t bold appear in plain text editors?

Plain text editors don’t support bold formatting. Bold requires a formatting layer like rich text, HTML, or Markdown. In these contexts, bold is represented by markup or styling rather than visual emphasis alone.

Bold needs formatting support; plain text editors don’t render bold by themselves.

Is Ctrl+B the same as Cmd+B in web apps?

In most web apps, Ctrl+B on Windows and Cmd+B on macOS bold text. Some apps reserve the shortcut for other actions, so it’s good to verify in the app’s help or settings.

Yes, most web apps use Ctrl+B or Cmd+B, but some may override it.

Main Points

  • Use Ctrl+B or Cmd+B as the default bold shortcut across apps
  • Test across at least three editors to ensure consistency
  • In Markdown/HTML, bold is represented with text or <strong>text</strong>
  • If needed, customize shortcuts with dedicated remapping tools and save your setup

Related Articles