我在一個(gè)Jupyter筆記本中使用了一些css/html來給markdown添加一些風(fēng)格:
單元格1:
Here is the cell before, full of useful things.
單元格2:
<div class="alert alert-info">
<h1>Why am I so far away?</h1>
An info cell, fairly useful things.
</div>
看起來是這樣的:
這里有一個(gè)問題,我試圖通過改變h1樣式來解決:
<style>
h1 {
margin-top: 0;
}
</style>
我在筆記本的一個(gè)單獨(dú)的markdown單元格中這樣做了(但也在同一個(gè)單元格中試過),沒有效果。我也嘗試了同樣的div風(fēng)格,但沒有效果。
編輯 ChatGPT剛剛告訴我,我可以嘗試內(nèi)聯(lián)指定樣式:
<h1 style="margin-top: 0;">Why am I so far away?</h1>
目前這是可行的,但我不喜歡它,因?yàn)樗鼤?huì)在我的筆記本上增加很多額外的輸入。