- Published on
CSSで"and"と"or"と否定(not)
- Authors
- Name
- Shou Arisaka / 有坂翔
CSSで"and"と"or"と否定(not)を実装する方法についてメモです。
and
<div class="class1 class2"></div>
div.class1.class2
{
/* foo */
}
or
// 2つが当てはまる。
<div class="class1"></div>
<div class="class2"></div>
div.class1,
div.class2
{
/* foo */
}
not
:not([id="foobar")
ref: