Sample
提示:隱藏特定 Notion 區塊 目的:在 Notion 頁面上隱藏指定的區塊。 網址範例:https://www.notion.so/12345?pvs=6789 關鍵部分:從網址中提取 pvs=4# 之後的 ID。例如:6789 CSS 規則: #block-[提取的ID] { display: none !important; } 將 [提取的ID] 替換為從網址中獲得的實際 ID。 應用:將這個 CSS 規則加入到您的網頁或樣式表中,以隱藏相應的 Notion 區塊。
It is possible once you found out that Block ID, you can use this code:
#block-21983712987308124081239820-9138 { display: none !important; }
Here's an example on how you can locate the Block ID.
Here is the code to do this - add this to Code > CSS
#block-6f579d1fcaf2449fba76326d6ed4ddfa { display: none !important;