Double quotes missing in style.css (lines 303 and 310)
-
Hello,
A few words to mention some typos in
style.css
: some*=
selectors miss double quotes.Line 303 before:
a[href*=\.mp3]:before, a[href*=\.wma]:before, a[href*=\.ogg]:before, a[href*=\.m4a]:before {
Line 303 after:
a[href*=".mp3"]:before, a[href*=".wma"]:before, a[href*=".ogg"]:before, a[href*=".m4a"]:before {
Line 310 before:
a[href*=\.mp4]:before, a[href*=\.avi]:before, a[href*=\.flv]:before , a[href*=\.mov]:before, a[href*=\.m4v]:before {
Line 310 after:
a[href*=".mp4"]:before, a[href*=".avi"]:before, a[href*=".flv"]:before , a[href*=".mov"]:before, a[href*=".m4v"]:before {
The W3C CSS 3 attribute selector spec is not extremely explicit about the use of double quotes, but the examples do have them.
Same thing in the CSS WG Draft attribute selector spec.
Hope this helps.
(I discovered it while playing with a child theme of Universal and compiling it with Less).
Matthieu
- The topic ‘Double quotes missing in style.css (lines 303 and 310)’ is closed to new replies.