
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
tailwindcss-dropdown
Advanced tools
A plugin to create accessible, JavaScript free dropdowns with Tailwind CSS. This is not a component (although you can use the examples below as a blueprint).
npm install tailwindcss-dropdown
In tailwind.config.js add dropdown to your display variants and require the plugin, like this:
module.exports = {
theme: {},
variants: {
display: ['responsive', 'dropdown']
},
plugins: [require('tailwindcss-dropdown')],
}
This plugin adds dropdown as a variant for display utilities. Translating: you can use dropdown:block to change the display of a child ul to block (or any other property listed here)
It depends heavily on the structure of your HTML. eg:
<ul class="flex space-x-6" role="navigation">
<li><a href=#>Home</a></li>
<li><a href=#>Support</a></li>
<!-- 1) dropdown:block -->
<li class="relative dropdown:block" aria-haspopup="true">
<a href=#>Products</a>
<!-- 2) will transform this ul in a block when focused -->
<ul class="hidden absolute right-0 w-auto" aria-label="submenu">
<li><a href=#>macOS</a></li>
<li><a href=#>Windows</a></li>
</ul>
</li>
</ul>
Note that dropdown:block must contain a ul as child. The same could be done with a button:
<!-- 1) dropdown:block -->
<button class="relative dropdown:block" role="navigation" aria-haspopup="true">
Products
<!-- 2) will transform this ul in a block when focused -->
<ul class="absolute right-0 hidden w-auto" aria-label="submenu">
<li><a href="#">macOS</a></li>
<li><a href="#">Windows</a></li>
</ul>
</button>
The code for dropdown:block (and for every other display value, like dropdown:grid, etc) will look like this:
.dropdown\:block:focus-within > ul {
display: block;
}
So, when the element with class dropdown:block has focus within, the ul inside it turns into a block.
FAQs
Tailwind CSS plugin to style create accessible dropdowns
The npm package tailwindcss-dropdown receives a total of 66 weekly downloads. As such, tailwindcss-dropdown popularity was classified as not popular.
We found that tailwindcss-dropdown demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.