可以从其他服务器导入css文件吗?假设我在www.mysite.com上有我的html,我可以像这样导入我的CSS吗?
<link href="www.anothersite.com/style.css" rel="stylesheet" type="text/css" />
Run Code Online (Sandbox Code Playgroud)
是的,任何完整的URL都适用于CSS.你想要包含http://.
<link href="http://www.anothersite.com/style.css" rel="stylesheet" type="text/css" />
Run Code Online (Sandbox Code Playgroud)