Answers for "how to link css files to other css files"

CSS
3

how to link css to html in different folder

<link rel="stylesheet" href="../css/Style_page_1.css">
Posted by: Guest on February-02-2021
4

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

Browse Popular Code Answers by Language