Changing (back to default) font in ipython notebook

旧时模样 提交于 2019-12-12 05:59:30

问题


I used the following code to change the font of my notebook:

<style>
div.text_cell_render {
font-family: "Times New Roman", serif, serif;
}
</style>

But, didnt like the outcome. I tried to change it back by:

<style>
div.text_cell_render {
font-family: "Arial", serif;
}
</style>

But this does not working. is it becuase Arial is not a serif? I tried different combinations but non worked...

来源:https://stackoverflow.com/questions/20870335/changing-back-to-default-font-in-ipython-notebook

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!