Font-size: A A A
Logical AND.
Like "&&", this is a logical AND operator, but has a very low precedence.
<?php if (TRUE AND TRUE) if (!(1 AND 0)) print "TRUE!"; ?>
TRUE!
Both if statements evaluate to true.