Example code of how CSS matches multiple classes

Example code of how CSS matches multiple classes

CSS matches multiple classes

The following HTML tag li, class has open style. My requirement is to change the background color to white only when open and active exist at the same time

<li id="menu_268098" title="Account Information Query" class="open">
        <li id="menu_270008" class="nav_sec" title="Account Balance Query">
            <a href="#/p/payment.search.account_balance" class="dropdown-toggle">
                <span class="nav-title">Account Balance Inquiry</span>
            </a>
        </li>
    </ul>
</li>
<li id="menu_268098" title="Account Information Query" class="open active">
        <li id="menu_270008" class="nav_sec" title="Account Balance Query">
            <a href="#/p/payment.search.account_balance" class="dropdown-toggle">
                <span class="nav-title">Account Balance Inquiry</span>
            </a>
        </li>
    </ul>
</li>

The css can be written like this:

li.open.active{
  background-color: #fff;
}

Note: There should be no space between .open.active

Summarize

This is the end of this article about how to match multiple classes in CSS. For more information about how to match multiple classes in CSS, please search previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future!

<<:  Fixed table width table-layout: fixed

>>:  5 Reasons Why Responsive Web Design Isn’t Worth It

Recommend

Introduction to html form control disabled attributes readonly VS disabled

There are two ways to disable form submission in ...

Detailed tutorial on downloading mysql on Windows 10

MySQL versions are divided into Enterprise Editio...

Introduction to the use of several special attribute tags in HTML

The following attributes are not very compatible w...

MySQL uses custom sequences to implement row_number functions (detailed steps)

After reading some articles, I finally figured ou...

Docker container accesses the host's MySQL operation

background: There is a flask project that provide...

Html tips to make your code semantic

Html semantics seems to be a commonplace issue. G...

Best tools for taking screenshots and editing them in Linux

When I switched my primary operating system from ...

CentOS 7.x deployment of master and slave DNS servers

1. Preparation Example: Two machines: 192.168.219...

JavaScript imitates Jingdong magnifying glass special effects

This article shares the specific code of JavaScri...

MySQL 5.7.10 installation and configuration tutorial under Windows

MySQL provides two different versions for differe...