Basically I want to strike through some text; how can I do this?
10 Answers
Ok, I have discovered a simple way. Copy this text and paste into your e-mail. Edit the text. Voila!
- 13The only bummer is this also carries over the color and font. I've found the extension @GHelper posted to work much better as it just adds a button to the text formatting toolbar in Gmail.Mike Branski– Mike Branski2015-02-25 16:12:01 +00:00Commented Feb 25, 2015 at 16:12
- 3After pasting the text, select it and hit Ctrl-Shift-- (Ctrl-Shift-Minus) to shrink it down to Gmail's default font.ladenedge– ladenedge2015-07-24 13:33:46 +00:00Commented Jul 24, 2015 at 13:33
-
- 1haha, you made my day the craziest and most efficient answer everAlain– Alain2017-01-24 21:47:17 +00:00Commented Jan 24, 2017 at 21:47
- 4@Michael - If you've already written a bunch of text, you can paste with ctrl-shft-V to paste while maintaining the style of the text you're pasting into.JoeM05– JoeM052017-04-21 17:42:52 +00:00Commented Apr 21, 2017 at 17:42
This may not be for everyone (I work in web development), and it's slow, but if you use Chrome or Chromium you can edit the HTML directly and it works fine.
- Right-click on the text you want to strike out
- Choose 'inspect element'
- The inspector will bring up that text - right click on it and choose 'edit html'
- Wrap the text you want to strike out with
<strike>text</strike>

- 7The third step is important. Editing the tag element with that text and adding the
<strike>text</strike>there results in<strike>text</strike>being the text in the email (tags visible, without the formatting), and the HTML for it is<strike>text</strike>.jvriesem– jvriesem2015-04-24 21:56:46 +00:00Commented Apr 24, 2015 at 21:56 - 1alternatively you can add
text-decoration: line-through;to the elements style using the dev toolsBen– Ben2016-10-31 15:25:40 +00:00Commented Oct 31, 2016 at 15:25 - 5Use
<s>: the current version of the obsolete<strike>. (<del>should be used exactly for deletions from documents, as in a diff; that is something you would usually not format manually. (@jaepage))Aaron Thoma– Aaron Thoma2017-06-09 19:01:35 +00:00Commented Jun 9, 2017 at 19:01 - This technique works (I used the
<s>form suggested by @AaronThoma) and TBH it's more memorable than Google Sheets' Option-Shift-5 or Google Docs' Cmd-Shift-X, neither of which works in Gmail.Jerry101– Jerry1012017-10-06 23:48:06 +00:00Commented Oct 6, 2017 at 23:48 - This solution is awesome, with a small caveat: to identify the block easily it needs to be on its own line lie it the example. If the word you want to strike in a sentence/block then you will make sure that you find the specific work in the block/div and add the <del></del> around only that word.Bogdan– Bogdan2018-10-04 14:18:32 +00:00Commented Oct 4, 2018 at 14:18
While this is a very old query, I have found a nifty way to work on it, thus posting it as a solution.
There is a shortcut Alt+Shift+5 to toggle the strike-through. Select the text to strike through, click once Alt+Shift+5 the text is stroked, click once more the text is back to normal.
For Mac: Cmd+Shift+x
- 7This is the answer, glad I scrolled down, thanks! Works in all browsers I've tried, seems to be an undocumented gmail feature. Looks like gmail uses the same editor as docs, and that shift+alt+5 is a google docs feature.Some_Guy– Some_Guy2018-11-09 16:48:38 +00:00Commented Nov 9, 2018 at 16:48
- for me it replaced the text with "fi"inquisitive– inquisitive2018-12-11 09:48:16 +00:00Commented Dec 11, 2018 at 9:48
- Confirmed for Firefox on MacOS High Sierra 10.13.6 - definitely the correct answer.Jayx– Jayx2019-01-16 15:21:04 +00:00Commented Jan 16, 2019 at 15:21
Personally, I type emails that need more formatting options in the CKeditor demo. Then, I copy the final text into Gmail - the formatting is retained.
- 1Hehh, a smart, instant, minimalist idea, +1! :) (It's kind of unfair use of that demo, though, if I'd go by Kantian ethics... ;-o )lunakid– lunakid2015-07-12 08:14:45 +00:00Commented Jul 12, 2015 at 8:14
- 1Yeah, someone should definitely write a userscript or extension to replace Google's Inbox and Gmail textareas with CKeditor...Timothy Zorn– Timothy Zorn2016-12-19 09:26:25 +00:00Commented Dec 19, 2016 at 9:26
There is no native way to do it, so you either do it in Word (or any other text editor that supports it) and then copy/paste the text in the compose window or you install a browser add-on.
- "or you install a browser add-on" ... such as?endolith– endolith2015-02-20 19:57:19 +00:00Commented Feb 20, 2015 at 19:57
- @endolith such as StrikeThrough for Gmail. (Disclaimer: I haven’t used it.)Alex– Alex2015-03-03 07:18:44 +00:00Commented Mar 3, 2015 at 7:18
- 1StrikeThrough for Gmail is long defunct according to its reviews. ( @Alex )Aaron Thoma– Aaron Thoma2017-08-06 16:16:14 +00:00Commented Aug 6, 2017 at 16:16
On Mac in Google Chrome, select the text, and hit Cmd-Shift-x.
- Works in Safari tooJoppe Geluykens– Joppe Geluykens2018-11-29 13:46:25 +00:00Commented Nov 29, 2018 at 13:46
I thought it would be clever to create a bookmarklet in Chrome that would modify the style of selected text using JavaScript.
Unfortunately, I couldn't get that to work, but if you're familiar with the console, you can paste this line into it to strikethrough any selected text:
window.getSelection().anchorNode.parentNode.style.textDecoration = "line-through" To get to the console, you can right click anywhere in the HTML document of the Chrome Browser and choose "Inspect Element," or you can press "option / command / J" at the same time on a Mac machine.
F12 or "control - shift - J" opens up the console on PCs.
Once you've done this, the console will remember your command, and you can press the up arrow to cycle through past console commands. When you return to this particular one, just press enter again to apply it.
January 22nd 2019, Google announced:
We're adding three new features to Gmail:
- Shortcut to undo/redo in the compose window
- Shortcut to strikethrough text
- Ability to download messages as .EML files in rfc822 format from Gmail on the web
from New Gmail compose formatting and download options in the official G Suite Updates blog.
Command (or Ctrl) + Shift + X.
- On what OS/browsers have you tested this? This doesn't work for me on Chrome/Windows.MrWhite– MrWhite2018-12-12 20:06:22 +00:00Commented Dec 12, 2018 at 20:06
- Chrome on Mac OS. Just tested again and it is working. Make sure you select the text before hitting Cmd + Shift + X.Izaias– Izaias2018-12-13 21:07:26 +00:00Commented Dec 13, 2018 at 21:07

userscripts-mirror.org/scripts/show/57725. Tested working.Alt + Shift + 5instead.cmd + shift + xfor Mac users @Pikamander2