less Getting started with less Joining Files - Imports

Help us to keep this website almost Ad Free! It takes only 10 seconds of your time:
> Step 1: Go view our video on YouTube: EF Core Bulk Extensions
> Step 2: And Like the video. BONUS: You can also share it!

Example

The @import statement allows you to insert CSS/Less code from another file into your own CSS/Less file.

.foo {
  background: #900;
}
@import "my-other-css-file.css";
@import "my-other-less-file.less";


Got any less Question?