How to import the content of a CSS file into another CSS file

If you would like to place the content of a CSS file into another CSS file, copying and pasting is not the only way you can do it. You can easily use @import to include all the content of an existing CSS file into your current CSS file:

@import “myOtherStylesheet.css“;

Leave a Reply

Your email address will not be published. Required fields are marked *

Back To Top