this line of code is for the navigation bar of Apple.com
#globalheader #globalnav[class*="nosearch"] { width:100%; }
Somebody know what that asterisk after class means there?
#globalnav[class*="nosearch"]
means: class contains "nosearch"
#globalnav[class^="nosearch"]
means: class starts with "nosearch"
#globalnav[class$="nosearch"]
means: class ends with "nosearch"
Reference: http://reference.sitepoint.com/css/css3attributeselectors
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With