I would like to know how to use @import
to import style sheets into another style sheet, for example:
Inside the style.css file:
@import url("css/layout.css");
body{
background: #F0F0F0;
}
.container{
width: 80%;
margin: 0 auto;
...
}
-
I need to declare something else so that I can use layout.css styles , as in HTML for example?
-
Is page load slower in this way compared to direct headline declaration?