- Tab 1
- Tab 2
- Tab 3
Good morning. This is the content of Tab 1.
Hello. This is the content of Tab 2.
Good evening. This is the content of Tab 3.
HTML
<div class="container">
<h1>Tab Design 3 - Card Style</h1>
<div class="tab-container">
<ul>
<li class="selected" data-id="tab-1">Tab 1</li>
<li data-id="tab-2">Tab 2</li>
<li data-id="tab-3">Tab 3</li>
</ul>
<div class="tab-content selected" id="tab-1">
Good morning. This is the content of Tab 1.
</div>
<div class="tab-content" id="tab-2">
Hello. This is the content of Tab 2.
</div>
<div class="tab-content" id="tab-3">
Good evening. This is the content of Tab 3.
</div>
</div>
</div>
CSS
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: #f5f5f5;
padding: 20px;
}
.container {
max-width: 800px;
margin: 0 auto;
background: white;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
overflow: hidden;
}
h1 {
text-align: center;
padding: 30px 20px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
margin: 0;
}
/* ===== Design 3: Card Style ===== */
.tab-container ul {
margin: 0;
padding: 20px;
list-style: none;
display: flex;
gap: 8px;
margin-bottom: 0;
}
.tab-container ul li {
flex: 1;
padding: 12px 20px;
text-align: center;
cursor: pointer;
transition: all 0.3s ease;
background: white;
border: 2px solid #e0e0e0;
border-radius: 8px;
color: #666;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.tab-container ul li.selected {
color: #fff;
background: #ff6b6b;
border-color: #ff6b6b;
box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
transform: translateY(-2px);
}
.tab-container ul li:not(.selected):hover {
border-color: #ff6b6b;
color: #ff6b6b;
transform: translateY(-1px);
}
.tab-container .tab-content {
display: none;
padding: 24px;
min-height: 150px;
background: white;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
margin: 0 20px 20px 20px;
}
.tab-container .tab-content.selected {
display: block;
}
JavaScript
// Get tab container
const tabContainer = document.querySelector('.tab-container');
const tabMenuItems = tabContainer.querySelectorAll('ul li');
const tabContents = tabContainer.querySelectorAll('.tab-content');
// Set event listeners for each tab menu item
tabMenuItems.forEach(tabMenuItem => {
tabMenuItem.addEventListener('click', () => {
// Remove selected class from all tabs
tabMenuItems.forEach(item => {
item.classList.remove('selected');
});
// Add selected class only to clicked tab
tabMenuItem.classList.add('selected');
// Remove selected class from all tab contents
tabContents.forEach(tabContent => {
tabContent.classList.remove('selected');
});
// Add selected class to content with same ID as clicked tab's data attribute
document.getElementById(tabMenuItem.dataset.id).classList.add('selected');
});
});