A webkit may refer to any of the following:
Webkit is an open-source web browser engine that was developed by Apple, Inc. It has powered browsers, including Google Chrome, Apple Safari, the default iOS browser, and the default Android browser. For more information about WebKit, visit the WebKit website.
In CSS, the -webkit- prefix is used for CSS properties not officially implemented either by W3C specifications or by regular web browsers, but are available to WebKit browsers. For example, the property -webkit-background-size can override the size of a background image, as shown below.
.header { background-image:url(bg.jpg); -webkit-background size:500px 50px; }
This CSS would cause the size of the background image to be sized at 500 pixels by 50 pixels for WebKit browsers.
AJAX, Cloud computing, Internet 2, Internet terms, Social networking, Web
Microsoft Internet Explorer uses the -ms- prefix, and Gecko browsers, like Firefox, have the -moz- prefix.
Related information
- List of WebKit-specific CSS properties.