0

I am currently building an HTML e-mail with no CSS or JavaScript. In Android 4.4.2, the TD stacking method doesn't work in either case, so I must replace TD tags with TH tags in order for it to work. The only problem I have now is: how to unbold the <TH> tags without using any CSS or JavaScript?

TH tags are centered and bold by default.

3
  • “TH tags are centered and bold by default” – and that is the result of: CSS. If not of the mail client showing the mail, then of the default stylesheet browsers apply. If you want to do something about that, you have to use CSS, to overwrite those default formattings. // Why do you not want to use CSS? Commented Jan 19, 2016 at 15:00
  • In one word NOT POSSIBLE without CSS and JS Commented Jan 19, 2016 at 15:01
  • If the TD stacking method doesn't work, why would replacing TDs by THs solve anything? Can you post an example of something that works using THs, but not using TDs? Commented Jan 24, 2016 at 22:30

1 Answer 1

0

I'm pretty sure inline styling works well for HTML emails.

<th style="font-weight:400;"></th>
Sign up to request clarification or add additional context in comments.

2 Comments

@DanielPurPur ahh very true.
Wish there was something like <unbold>. For example, for use in GitHub markdown, where CSS styles are not allowed.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.