Answers for "import css file to all css"

CSS
5

import css in another css file

@import "navigation.css"; /* Via string */

or

@import url("navigation.css"); /* Via url */
Posted by: Guest on July-28-2020
0

html incliude all css from folder

<link href="master.css" type="text/css" />

In the master.css import other styles:

@import url(style1.css);
@import url(style2.css);
@import url(style3.css);
Posted by: Guest on May-31-2021

Browse Popular Code Answers by Language