How do I enter strikethrough text in a web form

Is it possible to submit some text in web form where some of the text is in strikethough?

Is there some Alt key combination that I can use?

1

4 Answers

Actually, you can enter strikethrough text into a web-form using unicode characters, which is pretty universal these days. To generate the text, you could use one of these tools and then copy/paste the output.

Strikethrough is like a font. It's an attribute of the text, not text itself. Since forms are submitted in plain text, you can't have any formatting submitted with it.

1

Unless it supports HTML, no, as far as I know.

Probably not, but it depends on the web form. Most web forms accept just plain text.

You see strikethrough on web pages (like in your question) as a bit of HTML formatting. If the web form supports HTML it might support strikethrough. Try using the <strike> tag around your text.

There is also a combining diacritic defined for overlaying strikethrough on Unicode characters, but that's even more esoteric than HTML support in a web form.

5

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like