Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • WebKit and How it is Helpful for HTML5

    • 0
    • 2
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 222
    Comment on it

    What is WebKit?

    Apple Inc. launched open source web browser named **Webkit** In today's time it powers browser such as Google Chrome, Apple Safari, the default iOS browser, and the default Android browser.

    In CSS, the -webkit- prefix is used for CSS properties that have not been officially implemented either by the W3C specifications or by web browsers in general, but are available to WebKit browsers using the prefix with the property name. For example, the property -webkit-background-size can be used to override the size of a background image, as shown below.

    .header
    {
     background-image:url(bg.jpg);
     -webkit-background size:500px 50px;
    }
    

    Webkit dominates market because it is compatible with all browser. The prefix for all browser are different but all prefix display same.

    div {
    -webkit-animation: mymove 5s infinite; /* Chrome, Safari, Opera */
    animation: mymove 5s infinite;
    } 
    

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: