Hi! I'm currently trying to make a specific design with gradient. The gradient should be divided into 3 parts, Blue to white then white to blue... I successfully did so with this:

background-image: -webkit-linear-gradient(top, #0088FF, #FFFFFF, #0088FF)

; (Chrome only)
I have these ones:

-webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#0088FF)); /*safari and earlier versions of chrome*/
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#FFFFFF', EndColorStr='#0088FF'); /* MSIE 6-8 */

Is there a way for these two can produce same effect?

Thanks

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.