GitHub Repos 中Readme.md 的自訂CSS
驗證修改根目錄下的readme.md 檔案的CSS 檔案的名稱自定義儲存庫的外觀時,GitHub 儲存庫的配置至關重要。雖然有些人認為它是 .github/github.css,但它可能不會產生預期的結果。
不依賴專用 CSS 文件,更有效的方法是將 HTML 和 CSS 嵌入到 中。 GitHub README 中的標籤。這可以透過使用
例如,要建立一個簡單的動畫來更改h1 文字的顏色:
<code class="css">h1 { color: red; animation: myanimation 2s infinite; } @keyframes myanimation { from { color: red; } to { color: yellow; } }</code>
然後將動畫嵌入到SVG 中file:
<code class="html"><svg width="100%" height="100%"> <foreignObject width="100%" height="100%"> <html> <head> <style> <!-- Code from above --> </style> </head> <body> <h1>Hello world!</h1> </body> </html> </foreignObject> </svg></code>
最後,使用 將SVG 檔案包含在GitHub README 中。標籤:
<img src="custom-animation.svg" alt="Animated text" />
此方法提供了一種靈活高效的方法來自訂 GitHub 儲存庫中 readme.md 檔案的外觀,而不受專用 CSS 檔案的限制。
以上是如何將自訂 CSS 加入 GitHub README.md 中?的詳細內容。更多資訊請關注PHP中文網其他相關文章!