是否可以将一些CSS应用于MAMP中localhost的'Index of /'页面?我一直在/ Applications / MAMP / bin / mamp /中挖掘,但我找不到从哪里链接到CSS。
答案 0 :(得分:3)
我决定使用Chrome扩展程序执行此操作。扩展需要两个文件:
的manifest.json
{
"name": "Pretty localhost",
"version": "1.0",
"description": "A much prettier localhost",
"content_scripts": [
{
"matches": ["http://localhost/"],
"css": ["styles.css"]
}
]
}
styles.css的
.some-element {some: style;}
然后可以从Chrome的扩展程序页面打包/安装扩展程序。
在完成Chrome扩展程序之后,我想“哦,是的,它只是一个Web服务器;我可以在其中粘贴一个index.html
文件,它只会工作“。
所以,这是我的另一个答案。创建索引文件,然后根据需要编写/设置页面样式。