自定義README.md 在GitHub 存儲庫中的外觀
問題:
無法確認用於自訂GitHub 儲存庫中的README.md 檔案的CSS 檔案的名稱。檔案名稱“.github/github.css”是否正確?
答案:
提供的檔案名稱「.github/github.css」修改不正確直接讀取 README.md 檔案。
要自訂 README.md 檔案的外觀,您可以在
例如,您可以在CSS 中建立一個簡單的動畫來更改標題的文字顏色:
<code class="css">h1 { color: red; animation: myanimation 2s infinite; } @keyframes myanimation { from { color: red; } to { color: yellow; } }</code>
<code class="html"><h1>Hello world!</h1></code>
透過將上述程式碼嵌入到SVG 檔案中,然後將其貼到Markdown 中,您可以自訂README.md 檔案的外觀。
以上是如何自訂 GitHub 儲存庫中 README.md 檔案的外觀?的詳細內容。更多資訊請關注PHP中文網其他相關文章!