vote up 1 vote down star

it is possible to import the css file from another server? let's say i have my html on www.mysite.com can i import my css like this?

<link href="www.anothersite.com/style.css" rel="stylesheet" type="text/css"  />
flag

2 Answers

vote up 3 vote down check

Yes, any full url is valid for css. You'll want to include http:// though.

<link href="http://www.anothersite.com/style.css" rel="stylesheet" type="text/css"  />
link|flag
vote up 2 vote down

You'll probably want to start the url with http://, otherwise some browsers will interpret that as http://your.currenturl.com/www.anothersite.com/style.css.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.