Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Gradients in Opera and IE

  • This topic is empty.
Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #44878
    eerik133
    Member

    Hi!
    please, how can I put these grandients into Opera and IE (>10 I think..)

    background: -moz-linear-gradient(
    top,
    #1275ae 0%,
    #0e619c);
    background: -webkit-gradient(
    linear, left top, left bottom,
    from(#1275ae),
    to(#0e619c));

    My attempts did not work..

    Thank you very much :)

    #135596
    unasAquila
    Participant

    opera

    background: -o-linear-gradient(top left, #1275ae 0% ,#0e619c 100%);

    IE10

    background: -ms-linear-gradient(top left, #1275ae 0% ,#0e619c

    #135632
    CrocoDillon
    Participant

    IE10 allows standard syntax too:

    background: linear-gradient(to bottom right, #1275ae, #0e619c);

    #135654
    eerik133
    Member

    thank you! :)

Viewing 4 posts - 1 through 4 (of 4 total)
  • The forum ‘CSS’ is closed to new topics and replies.