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

  • Home
  • SEARCH
  • 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 8178773
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T23:50:45+00:00 2026-06-06T23:50:45+00:00

I’m trying to find a resource that has a list of browser specific implementations

  • 0

I’m trying to find a resource that has a list of browser specific implementations of CSS properties that deviate from the current W3C standards.

For example, say IE supported something like this:

.my-class {
  -ms-foo: fizz buzz;
}

but when the proposal became a candidate reccomendation the standardized equivalent was:

.my-class {
  foo: buzz fizz;
}

In order to support versions of IE released before the CR, I’d want to write:

.my-class {
  -ms-foo: fizz buzz;
  foo: buzz fizz;
}

Googling for a list of these sorts of changes hasn’t been terribly fruitful, there’s a lot of wailing and gnashing of teeth around vendor prefixes but not a lot of "gotcha" lists. Best I’ve found thus far are offhand mentions of changes (in that case, -webkit-border-radius), but those rarely document the actual expected input; they tend to just give a broken example.

I have found an OK list of the prefixes that exist (along with their standard status), but unfortunately it doesn’t give the kind of details necessary for spotting the changes I’m interested in.

So, do any such lists exist?

I’ll take partial lists, or ones that exclude really old browsers (don’t really care about IE6, for example). I’m also only really concerned about the big 3.1 browsers (IE, Firefox, Webkit/Chrome/Safari, and Opera).

I also care about things that haven’t been addressed by the W3C (like appearance), this is a hard enough problem without worrying about the things vendors have straight-up made up.

  • 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-06T23:50:47+00:00Added an answer on June 6, 2026 at 11:50 pm

    There doesn’t seem to be an exhaustive list out there, but based on Compass, CSSPrefixer, and this list from Peter Beverloo here’s what I can scrape together.

    background-clip

    -moz-background-clip accepts padding and border instead of padding-box and border-box
    -webkit-background-clip behaves the same as the -moz version, but also accepts content instead of content-box

    background-origin

    -moz and -webkit versions accept the same values as their background-clip equivalents

    background-size

    -webkit-background-size duplicates single values, so -webkit-background-size: 10px is equivalent to background-size: 10px 10px. The prefixed webkit equivalent of background-size:10px is -webkit-background-size: 10px auto;.

    border-radius and friends

    The -moz equivalents of border-top-left-radius, border-bottom-left-radius, etc. are -moz-border-radius-topleft, -moz-border-radius-bottomleft and so on.

    -webkit-border-radius differs from the final spec in it’s handling of the two value shorthand. Webkit treats it as if all the long form versions were passed two values.

    More concretely:

    -webkit-border-radius: 1px 2px is equivalent to

    -webkit-border-top-left-radius: 1px 2px;
    -webkit-border-top-right-radius: 1px 2px;
    -webkit-border-bottom-left-radius: 1px 2px;
    -webkit-border-bottom-right-radius: 1px 2px;
    

    while border-radius: 1px 2px is equivalent to

    border-top-left-radius: 1px;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 1px;
    border-bottom-left-radius: 2px;
    

    The only work around I know of for this is to expand the two value case of -webkit-border-radius into it’s long forms so as to match proper border-radius.

    display

    If you want diplay:box to work everywhere, you need to use prefixed values like so:

    display:-webkit-box;
    display:-moz-box;
    display:box;
    

    I have no idea why this is, as all the box model specific properties (like box-align) also have prefixed versions in those browsers.


    Note that this doesn’t include anything that’s not currently part of a W3C document, like appearance, even if multiple browsers support it.

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

Sidebar

Related Questions

I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
Basically, what I'm trying to create is a page of div tags, each has
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I've got a string that has curly quotes in it. I'd like to replace
I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I'm trying to create an if statement in PHP that prevents a single post
I am trying to understand how to use SyndicationItem to display feed which is
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
For some reason, after submitting a string like this Jack’s Spindle from a text

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.