Titan
Results
2
comments of
Titan
感謝發 PR,下面是 HackMD 留言區塊的 HTML: ```html ... ``` HackMD 本身的 reset CSS 就有 `box-sizing` 的設定,所以不需要另外設定: ```css * { box-sizing: border-box; } ``` 並且 CSS 選擇器 `.ui-comment-app *` 不需要使用 `*`,讓所以 `.ui-comment-app`...
感謝修正! 你指的 `.ui-comment-button-container` 主要是在解決 hover 會有白色角落嗎? ```css .ui-comment-app .ui-comment-button-container.comment:not(.active):hover { z-index: 1050; background-color: white; } ``` 我會傾向將背景色設為透明,因為在原主題 hover 後變為白色背景也不會讓視覺有改變。