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 6800037
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T18:55:14+00:00 2026-05-26T18:55:14+00:00

I was wondering if any type of transcoder exists, that automatically adds vender specific

  • 0

I was wondering if any type of “transcoder” exists, that automatically adds vender specific properties to a stylesheet? For instance if I create a stylesheet like this:

div.rounded {
    border-radius: 5px;
    opacity: 0.8;
}

I can run the file through the transcoder, which outputs this:

div.rounded {
    border-radius: 5px;
    -mox-border-radius: 5px;
    -webkit-border-radius: 5px;
    opacity: 0.8;
    filter:Alpha(Opacity=80);
}

I’ve found a Javascript solution, but I’d rather “pre-compile” the stylesheets instead of depending on JS.

  • 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-05-26T18:55:15+00:00Added an answer on May 26, 2026 at 6:55 pm

    There are tools that exist for this sort of thing, one very popular one is the Compass CSS Framework, online at http://compass-style.com. It is to CSS what jQuery is to JavaScript – filling in and normalizing all of the details.

    With Compass (and SASS) you can do what you’re asking pretty effortlessly:

    div.rounded {
      @include border-radius; /* by default the radius is 5px */
    }
    

    The output will then be something along the lines of

    div.rounded {
      -webkit-border-radius: 5px 5px;
      -moz-border-radius: 5px / 5px;
      -o-border-radius: 5px / 5px;
      -ms-border-radius: 5px / 5px;
      -khtml-border-radius: 5px / 5px;
      border-radius: 5px / 5px;
    }
    

    If a framework seems too heavy-handed for your needs, you could consider also a more basic SASS solution such as a custom mixin with arguments:

    @mixin my-border-radius($radius) {
      -webkit-border-radius: $radius;
      -moz-border-radius: $radius;
      -o-border-radius: $radius;
      -ms-border-radius: $radius;
      -khtml-border-radius: $radius;
      border-radius: $radius;
    }
    
    div.rounded { 
      @include my-border-radius(5px); 
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to create a global (singleton) class that can associate any type of
I am wondering is there any mobile phone available in this world that enable
I am wondering how I would loop through a datetime or any type of
I'm wondering if it's possible to receive toast push-notifications (or any push-notification for that
I am wondering any efficient way to hide our Silverlight code. I know there
Just wondering if any of you guys know of any web-based/browser-based employee scheduling software/tools?
I'm wondering if any other C# developers would find it an improvement to have
I was just wondering if any one knows of a good script to emulate
I was wondering if any one could help me out; I have a table
i was wondering if any one can advise me on how i can go

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.