2
A
回答
2
您可以將custom.css
文件放在~/.jupyter/custom
文件夾中,這將影響CSS。
樣式的輸出,你需要使用一個選擇,像這樣:
.output_subarea * {
background-color: red;
}
根據您想要的風格是什麼。 *
匹配所有元素,.output_subarea
和*
之間的空格表示我們要選擇.output_subarea
的後代。 !important
表示我們想覆蓋任何現有的樣式,您可能需要使用它。如果它似乎並不奏效,試着加入上!important
像這樣:
.output_subarea * {
background-color: red !important;
}
有一對夫婦輸出選擇,你應該嘗試一下,直到你找到你想要使用的一個。
.output
選擇整個輸出的div .output_area
選擇任何輸出區域。通常造型.output
或.output_area
將做類似的事情。
.output_subarea
專門只針對實際產出的地區(即,它會排除提示)
玩弄它,使用瀏覽器找到你的網頁的部分的類具有看看DOM檢查想要影響
相關問題
- 1. Jupyter筆記本 - Python代碼
- 2. 嵌入Jupyter/IPython筆記本信息的最佳方法
- 3. Jupyter筆記本輸出單元格語法突出
- 4. 無法集中輸入Jupyter筆記本
- 5. 如何在Jupyter筆記本中將列表輸出爲表格?
- 6. 什麼是在OSx上設置虛擬環境的Jupyter筆記本的最佳方法
- 7. Jupyter筆記本電腦顯示代碼
- 8. 在Jupyter筆記本
- 9. 推出Jupyter筆記本「
- 10. 爲什麼不Jupyter筆記本命令打開筆記本?
- 11. 在Jupyter筆記本中存儲密碼
- 12. 爲什麼在IPython的Jupyter筆記本中,時間輸出爲Wall time:0 ns?
- 13. 爲什麼jupyter筆記本投擲IndentationError?
- 14. 在IPython中/ Jupyter筆記本
- 15. npm run build:js在Jupyter筆記本代碼上拋出錯誤
- 16. Jupyter筆記本:命令隱藏單元格的輸出?
- 17. 生成bit.ly或twitpic風格id的最佳方法是什麼?
- 18. jupyter: '筆記本' 不是Jupyter命令
- 19. 將jupyter筆記本轉換爲python腳本的最佳實踐
- 20. 閱讀圖像中Jupyter筆記本Jupyter筆記本
- 21. 在Jupyter筆記本中刷新for循環的輸出
- 22. R - 如何將HTML代碼嵌入到Jupyter筆記本輸出中?
- 23. 在bash內核的jupyter筆記本中運行python代碼
- 24. 如何在Jupyter筆記本中查看模塊的源代碼?
- 25. Javascript Jupyter筆記本如何獲取代碼單元格內容?
- 26. Ipyton筆記本/ jupyter
- 27. ipywidgets jupyter筆記本
- 28. 提取進出ipython/jupyter筆記本的泡菜的方法
- 29. 記錄f#代碼的最佳方式是什麼?
- 30. 什麼是記錄Perl代碼的最佳方式?