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>
Have anyone tried it before or achieved similar things or any help?
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>
.