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.
If you want to change the text cell font and font size you can type the following in a cell and hit shift+enter. Don't forget to refresh your browser for the change to take place. You can find all the font types here.
Not sure how to change font sizes in jupyter notebook, but in jupyter lab, jupyter notebook's successor, you can change font sizes by going “settings” → “Advanced Settings Editor” → “codeCellConfig” → “fontSize”.
Quick Configuration with the Jupyter Lab Menu To change your default fonts, from the main menu, select Settings ▶ Fonts ▶ Code ▶ Font (or Size or Line Height) and the value you'd like.
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With