Mediawiki 擴展:修訂版本之間的差異
出自六年制學程
(→用法) |
(→用法) |
||
第 21 行: | 第 21 行: | ||
在 wiki 頁中加: | 在 wiki 頁中加: | ||
*{{#css:MyStyles.css}} 或 {{#css:/skins/MyStyles.css}} ; | *{{#css:MyStyles.css}} 或 {{#css:/skins/MyStyles.css}} ; | ||
− | + | <pre>{{#css: | |
body { | body { | ||
background: yellow; | background: yellow; | ||
第 27 行: | 第 27 行: | ||
color: red; | color: red; | ||
} | } | ||
− | }#125; | + | }#125;</pre> |
更多資料請參考:[https://www.mediawiki.org/w/index.php?title=Extension:CSS/zh&variant=zh-tw 官網] | 更多資料請參考:[https://www.mediawiki.org/w/index.php?title=Extension:CSS/zh&variant=zh-tw 官網] |
2019年1月28日 (一) 22:05的修訂版本
外掛 CSS
安裝
- 下載檔案,並將其放在 extensions 目錄下的CSS目錄內。
- 在 LocalSettings.php 中加入:
- MediaWiki 1.29或更早版本:require_once "$IP/extensions/CSS/CSS.php";
- 較晚近的版本:wfLoadExtension('CSS');
可用參數:
$wgCSSPath = false; # 預設值,參考到 $wgScriptPath $wgCSSPath = ''; # 參考到伺服器的文件根目錄 $wgCSSPath = 'https://example.org/stylesheets'; # 參考到其他的 site
用法
在 wiki 頁中加:
- {{#css:MyStyles.css}} 或 {{#css:/skins/MyStyles.css}} ;
{{#css: body { background: yellow; font-size: 20pt; color: red; } }#125;
更多資料請參考:官網