Which CSS will cause your links to have a solid blue background that changes to semitransparent on hover?

Advertisement

  • a:link {
    background: #0000ff;
    }
    a:hover {
    background: rgba(0, 0, 255, 0.5);
    }
  • a {
    color: blue;
    }
    a:hover {
    background: white;
    }
  • a:link {
    background: blue;
    }
    a:hover {
    color: rgba(0, 0, 255, 0.5);
    }
  • a:hover {
    background: rgba(blue, 50%);
    }
    a:link {
    background: rgba(blue);
    }
Join our list

Subscribe to our mailing list and get interesting stuff and updates to your email inbox.

Thank you for subscribing.

Something went wrong.

Leave a Comment

Share via
Join our list

Subscribe to our mailing list and get interesting stuff and updates to your email inbox.

Thank you for subscribing.

Something went wrong.