CSS selectors by no means stop to amaze me in how highly effective they are often in matching advanced patterns. Most of that flexibility is in guardian/youngster/sibling relationships, very seldomly in worth matching. Take into account my shock once I discovered that CSS permits matching attribute values regardless off case!
Including a {area}i
to the attribute selector brackets will make the attribute worth search case insensitive:
/* case delicate, solely matches "instance" */ [class=example] { background: pink; } /* case insensitive, matches "instance", "eXampLe", and many others. */ [class=example i] { background: lightblue; }
The use instances for this i
flag are seemingly very restricted, particularly if this flag is knew information for you and also you’re used to a normal lower-case commonplace. A unfastened CSS classname commonplace can have and would proceed to result in issues, so use this case insensitivity flag sparingly!
Designing for Simplicity
Earlier than we get began, it is price me spending a quick second introducing myself to you. My identify is Mark (or @integralist if Twitter occurs to be your communication instrument of alternative) and I presently work for BBC Information in London England as a principal engineer/tech…
Create Namespaced Classes with MooTools
MooTools has at all times gotten a little bit of grief for not inherently utilizing and standardizing namespaced-based JavaScript lessons just like the Dojo Toolkit does. Many builders create their lessons as globals which is mostly frowned up. I principally disagree with that stance, however every to their very own. In any occasion…
Build a Calendar Using PHP, XHTML, and CSS
One of the website features my customers love to provider their web users is an online dynamic calendar. An online calendar can be used for events, upcoming product specials, memos, and anything else you can think of. I’ve taken some time to completely…
MooTools PulseFade Plugin
I used to be just lately pushed to create a MooTools plugin that may take a component and fade it to a min from a max for a given variety of occasions. Here is the results of my Moo-foolery. The MooTools JavaScript Choices of the category embrace: min: (defaults to .5) the…