Change font in Github Flavored markdown for Table

brg picture brg · Oct 27, 2014 · Viewed 18.9k times · Source

I am creating a Wiki page in github.com. I am trying to use table in the Markdown edit mode. I created table by embedding html expecting to add inline-css later but found that inline-css also not working.

I tried following:

<style>
  .markdown-body table td {
    font-size: 12px !important;
  }
</style>

Link for my wiki page.

Have anyone tried it before or achieved similar things or any help?

Answer

brg picture brg · Oct 27, 2014

I have managed to make the font size small in table by using <sub>...</sub> tag.

Achieved this by Wrapping each line of text (inside td) under <sub>...</sub>.

UPDATED WIKI LINK