Alternatives to Less logo

Alternatives to Less

CSS 3, Sass, Animate.css , css-loader, and Autoprefixer are the most popular alternatives and competitors to Less.
2.8K
1.2K
+ 1
930

What is Less and what are its top alternatives?

Less is a CSS pre-processor, meaning that it extends the CSS language, adding features that allow variables, mixins, functions and many other techniques that allow you to make CSS that is more maintainable, themable and extendable.
Less is a tool in the CSS Pre-processors / Extensions category of a tech stack.
Less is an open source tool with 17K GitHub stars and 3.5K GitHub forks. Here’s a link to Less's open source repository on GitHub

Top Alternatives to Less

  • CSS 3
    CSS 3

    CSS3 is the latest evolution of the Cascading Style Sheets language and aims at extending CSS2.1. It brings a lot of long-awaited novelties, like rounded corners, shadows, gradients, transitions or animations, as well as new layouts like multi-columns, flexible box or grid layouts. Experimental parts are vendor-prefixed and should either be avoided in production environments, or used with extreme caution as both their syntax and semantics can change in the future. ...

  • Sass
    Sass

    Sass is an extension of CSS3, adding nested rules, variables, mixins, selector inheritance, and more. It's translated to well-formatted, standard CSS using the command line tool or a web-framework plugin. ...

  • Animate.css
    Animate.css

    It is a bunch of cool, fun, and cross-browser animations for you to use in your projects. Great for emphasis, home pages, sliders, and general just-add-water-awesomeness. ...

  • css-loader
    css-loader

    The css-loader interprets @import and url() like import/require() and will resolve them. ...

  • Autoprefixer
    Autoprefixer

    It is a CSS post processor. It combs through compiled CSS files to add or remove vendor prefixes like -webkit and -moz after checking the code. ...

  • PostCSS
    PostCSS

    PostCSS is a tool for transforming CSS with JS plugins. These plugins can support variables and mixins, transpile future CSS syntax, inline images, and more. ...

  • Stylus
    Stylus

    Stylus is a revolutionary new language, providing an efficient, dynamic, and expressive way to generate CSS. Supporting both an indented syntax and regular CSS style. ...

  • Compass
    Compass

    The compass core framework is a design-agnostic framework that provides common code that would otherwise be duplicated across other frameworks and extensions. ...

Less alternatives & related posts

CSS 3 logo

CSS 3

74.3K
46.7K
0
The latest evolution of the Cascading Style Sheets language
74.3K
46.7K
+ 1
0
PROS OF CSS 3
    Be the first to leave a pro
    CONS OF CSS 3
      Be the first to leave a con

      related CSS 3 posts

      Jonathan Pugh
      Software Engineer / Project Manager / Technical Architect · | 25 upvotes · 2.4M views

      I needed to choose a full stack of tools for cross platform mobile application design & development. After much research and trying different tools, these are what I came up with that work for me today:

      For the client coding I chose Framework7 because of its performance, easy learning curve, and very well designed, beautiful UI widgets. I think it's perfect for solo development or small teams. I didn't like React Native. It felt heavy to me and rigid. Framework7 allows the use of #CSS3, which I think is the best technology to come out of the #WWW movement. No other tech has been able to allow designers and developers to develop such flexible, high performance, customisable user interface elements that are highly responsive and hardware accelerated before. Now #CSS3 includes variables and flexboxes it is truly a powerful language and there is no longer a need for preprocessors such as #SCSS / #Sass / #less. React Native contains a very limited interpretation of #CSS3 which I found very frustrating after using #CSS3 for some years already and knowing its powerful features. The other very nice feature of Framework7 is that you can even build for the browser if you want your app to be available for desktop web browsers. The latest release also includes the ability to build for #Electron so you can have MacOS, Windows and Linux desktop apps. This is not possible with React Native yet.

      Framework7 runs on top of Apache Cordova. Cordova and webviews have been slated as being slow in the past. Having a game developer background I found the tweeks to make it run as smooth as silk. One of those tweeks is to use WKWebView. Another important one was using srcset on images.

      I use #Template7 for the for the templating system which is a no-nonsense mobile-centric #HandleBars style extensible templating system. It's easy to write custom helpers for, is fast and has a small footprint. I'm not forced into a new paradigm or learning some new syntax. It operates with standard JavaScript, HTML5 and CSS 3. It's written by the developer of Framework7 and so dovetails with it as expected.

      I configured TypeScript to work with the latest version of Framework7. I consider TypeScript to be one of the best creations to come out of Microsoft in some time. They must have an amazing team working on it. It's very powerful and flexible. It helps you catch a lot of bugs and also provides code completion in supporting IDEs. So for my IDE I use Visual Studio Code which is a blazingly fast and silky smooth editor that integrates seamlessly with TypeScript for the ultimate type checking setup (both products are produced by Microsoft).

      I use Webpack and Babel to compile the JavaScript. TypeScript can compile to JavaScript directly but Babel offers a few more options and polyfills so you can use the latest (and even prerelease) JavaScript features today and compile to be backwards compatible with virtually any browser. My favorite recent addition is "optional chaining" which greatly simplifies and increases readability of a number of sections of my code dealing with getting and setting data in nested objects.

      I use some Ruby scripts to process images with ImageMagick and pngquant to optimise for size and even auto insert responsive image code into the HTML5. Ruby is the ultimate cross platform scripting language. Even as your scripts become large, Ruby allows you to refactor your code easily and make it Object Oriented if necessary. I find it the quickest and easiest way to maintain certain aspects of my build process.

      For the user interface design and prototyping I use Figma. Figma has an almost identical user interface to #Sketch but has the added advantage of being cross platform (MacOS and Windows). Its real-time collaboration features are outstanding and I use them a often as I work mostly on remote projects. Clients can collaborate in real-time and see changes I make as I make them. The clickable prototyping features in Figma are also very well designed and mean I can send clickable prototypes to clients to try user interface updates as they are made and get immediate feedback. I'm currently also evaluating the latest version of #AdobeXD as an alternative to Figma as it has the very cool auto-animate feature. It doesn't have real-time collaboration yet, but I heard it is proposed for 2019.

      For the UI icons I use Font Awesome Pro. They have the largest selection and best looking icons you can find on the internet with several variations in styles so you can find most of the icons you want for standard projects.

      For the backend I was using the #GraphCool Framework. As I later found out, #GraphQL still has some way to go in order to provide the full power of a mature graph query language so later in my project I ripped out #GraphCool and replaced it with CouchDB and Pouchdb. Primarily so I could provide good offline app support. CouchDB with Pouchdb is very flexible and efficient combination and overcomes some of the restrictions I found in #GraphQL and hence #GraphCool also. The most impressive and important feature of CouchDB is its replication. You can configure it in various ways for backups, fault tolerance, caching or conditional merging of databases. CouchDB and Pouchdb even supports storing, retrieving and serving binary or image data or other mime types. This removes a level of complexity usually present in database implementations where binary or image data is usually referenced through an #HTML5 link. With CouchDB and Pouchdb apps can operate offline and sync later, very efficiently, when the network connection is good.

      I use PhoneGap when testing the app. It auto-reloads your app when its code is changed and you can also install it on Android phones to preview your app instantly. iOS is a bit more tricky cause of Apple's policies so it's not available on the App Store, but you can build it and install it yourself to your device.

      So that's my latest mobile stack. What tools do you use? Have you tried these ones?

      See more
      Paul Morgan
      Researcher at Working on it · | 25 upvotes · 213.6K views
      Shared insights
      on
      JavaJavaCSS 3CSS 3HTML5HTML5

      Hey everyone, I have a matrix chart drawn in HTML5/CSS 3 dominantly using CSS grid. I would like to add interactive features and am unsure about the best tool. My programming knowledge is limited to 2 semesters of Java in college, so I'd have to learn the language as I go. I am open to anything, but the selected languages would be useful in future projects.

      Here are the features I am attempting to add to the site linked as my blog:

      • Assign over 120 attributes each to over 400 elements (probably in a DB)

      • Procedurally position elements in a matrix chart based on user-inputted filters (filtering and searching)

      • Procedurally position matrix elements based on attributes weighted by user-input

      • Change style of elements based on user input (highlighting)

      • Allow saving matrix chart states to be revisited or shared

      • Provide a user-friendly interface for users to submit the above input

      • Build several columns or matrices that are separate but related and seamless to the viewer

      See more
      Sass logo

      Sass

      41.1K
      30.1K
      3K
      Syntactically Awesome Style Sheets
      41.1K
      30.1K
      + 1
      3K
      PROS OF SASS
      • 613
        Variables
      • 594
        Mixins
      • 466
        Nested rules
      • 410
        Maintainable
      • 300
        Functions
      • 149
        Modular flexible code
      • 143
        Open source
      • 112
        Selector inheritance
      • 107
        Dynamic
      • 96
        Better than cs
      • 5
        Used by Bootstrap
      • 3
        If and for function
      • 2
        Better than less
      • 1
        Inheritance (@extend)
      • 1
        Custom functions
      CONS OF SASS
      • 6
        Needs to be compiled

      related Sass posts

      Islam Diab
      Full-stack Developer at Freelancer · | 9 upvotes · 136.9K views

      Hi, I want to start freelancing, I have two years of experience in web development, and my skills in web development: HTML CSS JavaScript [basic, Object-Oriented Programming, Document object model, and browser object model] jQuery Bootstrap 3, 4 Pre-processor -> Sass Template Engine with Pug.js Task Runner with Gulp.js and Webpack Ajax JSON JavaScript Unit testing with jest framework Vue.js

      Node.js [Just basic]

      My Skills in Back end development Php [Basic, and Object-Oriented Programming] Database management system with MySql for database relationships and MongoDB for database non-relationships architecture pattern with MVC concept concept of SOLID Unit testing with PHPUnit Restful API

      Laravel Framework

      and version control with GitHub ultimately, I want to start working as a freelancer full time. Thanks.

      See more

      ReactQL is a React + GraphQL front-end starter kit. #JSX is a natural way to think about building UI, and it renders to pure #HTML in the browser and on the server, making it trivial to build server-rendered Single Page Apps. GraphQL via Apollo was chosen for the data layer; #GraphQL makes it simple to request just the data your app needs, and #Apollo takes care of communicating with your API (written in any language; doesn't have to be JavaScript!), caching, and rendering to #React.

      ReactQL is written in TypeScript to provide full types/Intellisense, and pick up hard-to-diagnose goofs that might later show up at runtime. React makes heavy use of Webpack 4 to handle transforming your code to an optimised client-side bundle, and in throws back just enough code needed for the initial render, while seamlessly handling import statements asynchronously as needed, making the payload your user downloads ultimately much smaller than trying to do it by hand.

      React Helmet was chosen to handle <head> content, because it works universally, making it easy to throw back the correct <title> and other tags on the initial render, as well as inject new tags for subsequent client-side views.

      styled-components, Sass, Less and PostCSS were added to give developers a choice of whether to build styles purely in React / JavaScript, or whether to defer to a #css #preprocessor. This is especially useful for interop with UI frameworks like Bootstrap, Semantic UI, Foundation, etc - ReactQL lets you mix and match #css and renders to both a static .css file during bundling as well as generates per-page <style> tags when using #StyledComponents.

      React Router handles routing, because it works both on the server and in the client. ReactQL customises it further by capturing non-200 responses on the server, redirecting or throwing back custom 404 pages as needed.

      Koa is the web server that handles all incoming HTTP requests, because it's fast (TTFB < 5ms, even after fully rendering React), and its natively #async, making it easy to async/await inside routes and middleware.

      See more
      Animate.css  logo

      Animate.css

      10.7K
      2.6K
      0
      A library of CSS animations
      10.7K
      2.6K
      + 1
      0
      PROS OF ANIMATE.CSS
        Be the first to leave a pro
        CONS OF ANIMATE.CSS
          Be the first to leave a con

          related Animate.css posts

          css-loader logo

          css-loader

          3.1K
          0
          0
          Helps webpack to collect CSS from all the css files
          3.1K
          0
          + 1
          0
          PROS OF CSS-LOADER
            Be the first to leave a pro
            CONS OF CSS-LOADER
              Be the first to leave a con

              related css-loader posts

              Autoprefixer logo

              Autoprefixer

              2.6K
              49
              0
              PostCSS plugin to parse CSS and add vendor prefixes to CSS rules
              2.6K
              49
              + 1
              0
              PROS OF AUTOPREFIXER
                Be the first to leave a pro
                CONS OF AUTOPREFIXER
                  Be the first to leave a con

                  related Autoprefixer posts

                  PostCSS logo

                  PostCSS

                  619
                  524
                  49
                  Transform CSS with JS plugins
                  619
                  524
                  + 1
                  49
                  PROS OF POSTCSS
                  • 21
                    The "babel" of CSS
                  • 15
                    Customizable
                  • 8
                    Autoprefixer
                  • 2
                    Variables
                  • 1
                    Mixins
                  • 1
                    CSS MQPacker
                  • 1
                    PostCSS Flexbugs Fixes
                  CONS OF POSTCSS
                    Be the first to leave a con

                    related PostCSS posts

                    ReactQL is a React + GraphQL front-end starter kit. #JSX is a natural way to think about building UI, and it renders to pure #HTML in the browser and on the server, making it trivial to build server-rendered Single Page Apps. GraphQL via Apollo was chosen for the data layer; #GraphQL makes it simple to request just the data your app needs, and #Apollo takes care of communicating with your API (written in any language; doesn't have to be JavaScript!), caching, and rendering to #React.

                    ReactQL is written in TypeScript to provide full types/Intellisense, and pick up hard-to-diagnose goofs that might later show up at runtime. React makes heavy use of Webpack 4 to handle transforming your code to an optimised client-side bundle, and in throws back just enough code needed for the initial render, while seamlessly handling import statements asynchronously as needed, making the payload your user downloads ultimately much smaller than trying to do it by hand.

                    React Helmet was chosen to handle <head> content, because it works universally, making it easy to throw back the correct <title> and other tags on the initial render, as well as inject new tags for subsequent client-side views.

                    styled-components, Sass, Less and PostCSS were added to give developers a choice of whether to build styles purely in React / JavaScript, or whether to defer to a #css #preprocessor. This is especially useful for interop with UI frameworks like Bootstrap, Semantic UI, Foundation, etc - ReactQL lets you mix and match #css and renders to both a static .css file during bundling as well as generates per-page <style> tags when using #StyledComponents.

                    React Router handles routing, because it works both on the server and in the client. ReactQL customises it further by capturing non-200 responses on the server, redirecting or throwing back custom 404 pages as needed.

                    Koa is the web server that handles all incoming HTTP requests, because it's fast (TTFB < 5ms, even after fully rendering React), and its natively #async, making it easy to async/await inside routes and middleware.

                    See more
                    awesomebanana2018
                    Shared insights
                    on
                    PostCSSPostCSSStylusStylusSassSass

                    Originally, I was going to start using Sass with Parcel, but then I learned about Stylus, which looked interesting because it can get the property values of something directly instead of through variables, and PostCSS, which looked interesting because you can customize your Pre/Post-processing. Which tool would you recommend?

                    See more
                    Stylus logo

                    Stylus

                    387
                    407
                    331
                    Expressive, robust, feature-rich CSS language built for nodejs
                    387
                    407
                    + 1
                    331
                    PROS OF STYLUS
                    • 69
                      Simple
                    • 54
                      Indented syntax
                    • 38
                      Efficient
                    • 33
                      Built for node.js
                    • 32
                      Open source
                    • 24
                      Expressive
                    • 21
                      Maintainable
                    • 17
                      Feature-rich
                    • 13
                      Better than CS
                    • 6
                      Variables
                    • 5
                      Functions
                    • 3
                      @extend directive
                    • 2
                      Contempt for curly brackets
                    • 2
                      Very clean
                    • 2
                      Mixins
                    • 2
                      Is Easy
                    • 2
                      No colons, semi-colons or even curly braces
                    • 1
                      Its unique
                    • 1
                      Dynamic selectors
                    • 1
                      Scriptable
                    • 1
                      Easy Efficiently
                    • 1
                      Transparent
                    • 1
                      Supports orthogonal architecture
                    CONS OF STYLUS
                      Be the first to leave a con

                      related Stylus posts

                      awesomebanana2018
                      Shared insights
                      on
                      PostCSSPostCSSStylusStylusSassSass

                      Originally, I was going to start using Sass with Parcel, but then I learned about Stylus, which looked interesting because it can get the property values of something directly instead of through variables, and PostCSS, which looked interesting because you can customize your Pre/Post-processing. Which tool would you recommend?

                      See more
                      Compass logo

                      Compass

                      347
                      293
                      12
                      A Stylesheet Authoring Environment that makes your website design simpler to implement and easier to maintain
                      347
                      293
                      + 1
                      12
                      PROS OF COMPASS
                      • 9
                        No vendor prefix CSS pain
                      • 1
                        Mixins
                      • 1
                        Variables
                      • 1
                        Compass sprites
                      CONS OF COMPASS
                        Be the first to leave a con

                        related Compass posts