So we all know CSS resets are great and wise to have. However these reset style sheets can be quite long and I do not want to keep the reset styles in my main style.css file. Rather I would like to have a separate reset style sheet file.
How can this be done with WordPress using functions?
So far I have just included @import url('layouts/normalize.css');
in my styles.css and this works, but I do not know if this is the best approach.
FYI I am using a _s based theme.
Reference is here.
UPDATE
With right (template) URI:
You can add this code to your
function.php
or any init hook / action.