Chuck's Academy

What selector would you use to apply a style to all <a> elements whose href attribute starts with "https"?

  • a[href^="https"]

  • a[href*="https"]

  • a[href$="https"]

  • a[href!="https"]

Verify