Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7997203
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T14:55:09+00:00 2026-06-04T14:55:09+00:00

I’m using LESS to build a site, and want the layout to switch based

  • 0

I’m using LESS to build a site, and want the layout to switch based on direction, either ‘ltr’ or ‘rtl’ (direction:rtl)

I set @direction at the top. Then there are certain elements that I want floated left for ltr, and right for rtl. I also want to position absolute, and apply padding-left/right based on the @direction.

Instead of writing out separate mixins for float, pos and padding, I was trying to do something like this:

.mixin (@direction) when (@direction = ltr) {
    @lr:left;
}
.mixin (@direction) when (@direction = rtl) {
    @lr:right;
}

Then call it like this:

ol li {
    float:@lr;
}

and/or

ol li span.date {
    position:absolute;
    @lr:0;
}

That’s the idea, but any help would be appreciated. I’ve looked at guards, and parametric mixins but just can’t seem to nail it.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T14:55:10+00:00Added an answer on June 4, 2026 at 2:55 pm

    OK. After some playing and a bit of thinking this is what I’ve come up with. If I can’t use variables as properties then I’ll use @direction, and @directionOpp (opposite of rtl, ltr) to use as a layout helper.

    I have 2 variables.

    @direction:     ltr; // Change to 'rtl' for arabic, hebrew, etc.
    @directionOpp:  rtl; // Make this opposite of @direction, for easier mixins
    

    Here’s my mixin for horizontal positioning.

      #dir {
        .dir(ltr,@dist:0) {left: @dist;}
        .dir(rtl,@dist:0) {right: @dist;}
        .float(ltr){float:left; }
        .float(rtl){float:right;}
        .margin(ltr, @dist:@a){margin-left:@dist;}
        .margin(rtl, @dist:@a){margin-right:@dist;}
        .padding(ltr, @dist:@a){padding-left:@dist;}
        .padding(rtl, @dist:@a){padding-right:@dist;}
      }
    

    and here’s how I call it.

    ol li {
        #dir.float(@direction);
        #dir.padding(@direction);
    }
    

    If I ever need to reverse anything, then I can replace @direction with @directionOpp.

    I can also specifiy how much @dist I need as it’s parametric mixin, and since they’re all separate I can have any combination of margin, float, padding etc I need without multiple mixins with hard coded properties.

    Good solution?
    Dave

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a French site that I want to parse, but am running into
We're building an app, our first using Rails 3, and we're having to build
I'm new to using the Perl treebuilder module for HTML parsing and can't figure
That's pretty much it. I'm using Nokogiri to scrape a web page what has
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I want to count how many characters a certain string has in PHP, but
I am reading a book about Javascript and jQuery and using one of the
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
I'm using v2.0 of ClassTextile.php, with the following call: $testimonial_text = $textile->TextileRestricted($_POST['testimonial']); ... and
I want use html5's new tag to play a wav file (currently only supported

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.