I study about css in w3school . The css selectors table has rows :
[attribute|=value]
- [lang|=en] Selects all elements with a lang attribute value starting with "en"
[attribute^=value]
- a[src^="https"] Selects every element whose src attribute value begins with "https"
What differences between [attr |= value] and [attr ^= value] except double quotes ?