I'm learning some CSS to tweak my project template. I come to this problem and didn't find a clear answer on the web. Is there a difference between using @import or link in CSS?
Use of @import
<style type=”text/css”>@import url(Path To stylesheet.css)</style>
Use of Link
<link rel=”stylesheet” type=”text/css” href=“Path To stylesheet.css” />
What's the best way to do it? and why? Thanks!
Edit: There is some thoughts here