Or is it just a personal preference thing? What I'm getting at is, is there a specific benefit to using either method?
<link href="main.css" rel="stylesheet" type="text/css">
versus
<style type="text/css">
@import url('main.css');
</style>
|
|
Or is it just a personal preference thing? What I'm getting at is, is there a specific benefit to using either method?
versus
|
|||
|
|
|
|
According to Yahoo's Best Practices for Speeding Up Your Web Site, always use
Using |
||||
|
|
|
Short version? Long version? You want to use
That's talking about hiding things from IE4, which is why I said "mostly irrelevant". One of those cases hides things from IE6 but that's better done with Conditional comments. A more modern (and relevant) comparison is in Using the CSS @import Rule:
Another source is Yahoo's Best Practices for Speeding Up Your Web Site:
but doesn't really explain why (hence the previous links). |
||||||
|