About 13,400,000 results
Open links in new tab
  1. What is WebKit and how is it related to CSS? - Stack Overflow

    The -webkit prefix on CSS selectors are properties that only this engine is intended to process, very similar to -moz properties. Many of us are hoping this goes away, for example -webkit-border-radius will be replaced by the standard border-radius and you won't need multiple rules for the same thing for multiple browsers.

  2. What does display: -webkit-box do, and what browsers support it?

    Nov 28, 2022 · I ran into a situation where using the display: -webkit-box; fixes an issue for me when no other display property did. I wonder if I can use it and if it's supported for all browsers.

  3. css - What are -moz- and -webkit-? - Stack Overflow

    These are the vendor-prefixed properties offered by the relevant rendering engines (-webkit for Chrome, Safari; -moz for Firefox, -o for Opera, -ms for Internet Explorer).

  4. html - ms-transform vs webkit-transform? - Stack Overflow

    Feb 26, 2014 · I am new to CSS transform and animation, I was just wondering what is difference between those two. I understand -webkit-transform is specific to chrome and -moz-tranform is to Mozilla Firefox. I c...

  5. definition - What does it mean for a browser to be "webkit-based" …

    Jan 19, 2010 · WebKit is built to be suitable for a variety of environments, including mobile and embedded systems. Gecko includes an application-layer language based on web technologies called XUL which can be used for cross-platform GUI development (and is employed in Firefox, Thunderbird, and add-ons for both).

  6. css - Putting -moz-available and -webkit-fill-available in one width ...

    Oct 9, 2014 · I want to make the width of the footer browser-independent. For Firefox, I want to use the value of -moz-available, and when a user uses Opera, then CSS should get the values from -webkit-fill-avai...

  7. Styling input range for webkit with pure CSS - Stack Overflow

    Jan 16, 2017 · 10 Interesting approach being used by the Ionic framework for styling the range input track with just CSS. They are adding a ::before pseudo-element to the ::-webkit-slider-thumb, making it as wide as possible and then positioning it on top of the track. (I couldn't get border-radius to work with it.)

  8. webkit - WebKitGTK+, GTK2, GTK3 - Stack Overflow

    WebKit is a library which contains both WebKit1 and WebKit2. Which one is called with this include #include <webkit/webkit.h>? WebKitGTK 1.10.2 is the last version to depend on GTK2. Is it still maintained/developped? Does it always need to be supported by GTK, Qt or some other toolkit? Or would it be possible to use it alone?

  9. Which browsers support WebKit CSS? - Stack Overflow

    Aug 20, 2009 · Which browsers support WebKit CSS, like -webkit-border-radius, etc. (other than Safari)? Internet Explorer 6? Internet Explorer 7? Internet Explorer 8?

  10. CSS 3 slide-in from left transition - Stack Overflow

    Mar 14, 2024 · Use CSS3 2D transform to avoid performance issues (mobile) A common pitfall is to animate left / top / right / bottom properties instead of using css-transform to achieve the same effect. For a variety of reasons, the semantics of transforms make them easier to offload, but left / top / right / bottom are much more difficult. Source: Mozilla Developer Network (MDN)