Issue
I have a juptyer notebook with a markdown cell
# Projects
<div style="font-size: 50px">
hello
| Project |Project Type | Status |
|------------------------------|-------------------|-----------------------|
| Hello phase 1 |ABC |Ongoing |
| Goodbye analytics |EFG |Completed |
</div >
But it does not increase the font size of the words inside the table, and it only increases the font size of "Hello".
Is it possible to increase the font size of the words inside the table? Thanks.
Solution
You need some more CSS. Try adding the following to the markdown file, instead of the style=
thing:
<style>
td {
font-size: 50px
}
</style>
Depending on your jupyter version, other approaches might work.
Answered By - mb21
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.