CSS Classified tabs can display classified content, which can be achieved through the following steps: create an HTML container, contain tab buttons and content, and set its ID attribute; set the CSS style of the tab and content; use JavaScript to listen Tab button click event, hides all tab content and displays the tab content corresponding to the clicked button.
CSS category tab opening method
CSS category tab is a method used to organize and display content. way, which allows users to switch between different categories of content by clicking on tabs. To open CSS category tabs, you need to follow these steps:
HTML Structure
<button>
or <a>
element for each tab and set its id
attribute. <div>
element for each tab content and set its id
attribute. The following is a sample HTML structure:
<code class="html"><div class="tabs"> <button id="tab1">选项卡 1</button> <button id="tab2">选项卡 2</button> <div id="content1">内容 1</div> <div id="content2">内容 2</div> </div></code>
CSS style
Here are sample CSS styles:
<code class="css">.tabs { display: flex; background-color: #f1f1f1; padding: 10px; } .tabs button { padding: 10px 20px; background-color: #ccc; border: none; cursor: pointer; } .tabs button.active { background-color: #f1f1f1; } .tabs div { display: none; padding: 20px; } .tabs div.active { display: block; }</code>
JavaScript Event Handling
The following is sample JavaScript event handling:
<code class="javascript">const tabs = document.querySelector('.tabs'); tabs.addEventListener('click', (e) => { if (e.target.tagName === 'BUTTON') { const tabId = e.target.id; const contentId = tabId.replace('tab', 'content'); const buttons = tabs.querySelectorAll('button'); buttons.forEach(btn => btn.classList.remove('active')); e.target.classList.add('active'); const contents = tabs.querySelectorAll('div'); contents.forEach(content => content.classList.remove('active')); const content = tabs.querySelector(`#${contentId}`); content.classList.add('active'); } });</code>
The above is the detailed content of How to open css category tab. For more information, please follow other related articles on the PHP Chinese website!