I am working in a website that will possibly require different stylesheets.
I've been using <link href> to link to different stylesheets, but lately this idea stroke me, why not turn the css file into a php document and include it inside the page using the <style> tag instead?
I thought that this would be faster as no additional requests would be made to the server for the css files and also it could have the benefit to use php tags to e.g. specify and generate a path for images like <?php echo $image_path ?>test.png
What do you think of this idea?
<link href> or <style> for css?
Moderator: General Moderators
Re: <link href> or <style> for css?
Hi
<link href="your-style.css" rel="stylesheet" type="text/css" media="screen" />
is the best way and fasted for my website. may be different you you use an java or mysql on the page?
<link href="your-style.css" rel="stylesheet" type="text/css" media="screen" />
is the best way and fasted for my website. may be different you you use an java or mysql on the page?
Re: <link href> or <style> for css?
<link rel> requires HTTP request. On the other hand, it can be cached, and inline CSS (style) cannot. So in my opinion the best way is to have the common CSS in an external file, and the page-specific to be inline to save HTTP request, as well as loading and parsing of CSS that is not used on the specific page.
Re: <link href> or <style> for css?
Use <link> for css. Make it external and make it a PHP file with the header as:
Code: Select all
<?php header("Content-type: text/css"); ?>