SASS @import directive is used to include one stylesheet inside another stylesheet and in other words, we can say that it imports the .SASS and .scss files.The location of the stylesheet can either be in the same server or it is written with the URL to the directory of another server. For Example:-

  • @import "test.css";
  • @import "css/test.css";
  • @import url("http://check.com/css/test.css");
BY Best Interview Question ON 18 Jan 2019