Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Is less better than Saas ??

  • This topic is empty.
Viewing 15 posts - 1 through 15 (of 23 total)
  • Author
    Posts
  • #45332
    akshan
    Participant

    I am learning the Less.css however i am confused between SAAS and LESS,
    which is better to learn ??

    #137812
    Chester
    Participant

    [Sass vs LESS](https://css-tricks.com/sass-vs-less/ “”)

    There you go. If you’re a fan of @chriscoyier, like I do, go with Sass too.

    #137817
    akshan
    Participant

    Thanks Chester and Jamy for the links.

    I have read the article: **https://css-tricks.com/sass-vs-less/** I got to know the difference of both pre-processors and will move towards SAAS.

    #137823
    Kuzyo
    Participant
    #137914
    rawat3209
    Participant

    I think both SAAS and LESS made Css so complex.

    #137915
    __
    Participant

    > I think both SAAS and LESS made Css so complex.

    css became complex on its own. sass made it manageable.

    *(disclaimer: never used LESS.

    The syntax and language features of SASS are definitely more appealing to me, however.)*

    #137916
    chrisburton
    Participant

    SASS made CSS enjoyable.

    #137917
    akshan
    Participant

    Thanks for sharing the link Kuzyo.

    #137939
    CrocoDillon
    Participant

    > I think both SAAS and LESS made Css so complex.

    You can just start using basic features. Variables, maybe nesting and having multiple files compiling into one minified css file.

    #137945
    Kitty Giraudel
    Participant

    > I think both SAAS and LESS made Css so complex.

    I think this is because you somewhat missused them.

    #137955
    rawat3209
    Participant

    I am quite confuse regarding SAAS. And don’t know where to start with.

    #137956
    akshan
    Participant

    I think both SAAS and LESS made Css so complex.

    It’s like i am learning the new style of CSS in SAAS.

    #137963
    Kuzyo
    Participant

    I don’t want to start new discusion, have a question about organizing SASS and CSS files. I started to organize css properties alphabetical and after reading this articles https://css-tricks.com/sass-style-guide/ I know how to organize my scss file, but sometimes I have to send my css (not scss) code to sameone else and after compilation it messing up because of @include. Here is example

    footer {
    color:#444 ;
    font-size: 12px;
    height: 94px;
    @include background(linear-gradient(#efefef, #e8e8e8));
    }

    after compilation looks as

    footer {
    color: #444444;
    font-size: 12px;
    height: 94px;
    background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #efefef), color-stop(100%, #e8e8e8));
    background: -webkit-linear-gradient(#efefef, #e8e8e8);
    background: -moz-linear-gradient(#efefef, #e8e8e8);
    background: -o-linear-gradient(#efefef, #e8e8e8);
    background: linear-gradient(#efefef, #e8e8e8);
    }

    What you do with prefixes properties?If you understand at all what I’m talking about ?))))

    #137964
    Senff
    Participant

    It’s Sass not SASS (or SAAS).

    Yes, I have a new pet peeve and no, don’t take this too seriously. ;)

    #137968
    Senff
    Participant

    @jamy_za Mee to actually but then I saw a post from someone who’s involved in Sass make a point out of it! :)

    I was just being an ASS about it I guess.

    OH! See what I did there….?? :D

Viewing 15 posts - 1 through 15 (of 23 total)
  • The forum ‘CSS’ is closed to new topics and replies.