Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6651001
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T00:57:32+00:00 2026-05-26T00:57:32+00:00

I would like to implement a web page which contains tabs, the tabs are

  • 0

I would like to implement a web page which contains tabs, the tabs are on top, bottom and left hand side of the page, like following:

enter image description here

Where the middle space is used for content change when user clicked a tab.

I am wondering What is the best way to implement this kind of layout?
I intend to use html table, but I am not sure if table cell can be CSS to a tab-like component? And how to do that?

Or is there any other way to implement this which is better than a table?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T00:57:32+00:00Added an answer on May 26, 2026 at 12:57 am

    Do not use a table, as this is not tabular data.

    Instead, you should consider using divs and styling with display:table; etc.

    So, you would use

    display:table;
    display:table-cell;
    display:table-column;
    display:table-row;
    

    Then you could use jQuery to make the divs clickable and to show() and hide() the content.

    EDIT

    Here is a simplified version to get you started:

    HTML

    <div id="page">
    
        <div id="top_row">
            <div class="top_row_cell" id="tab1">Tab 1</div>
            <div class="top_row_cell" id="tab2">Tab 2</div>
            <div class="top_row_cell">Tab 3</div>    
        </div>
    
        <div id="middle_row">
            <div class="middle_row_cell"></div>
            <div class="middle_row_cell empty"></div>
            <div class="middle_row_cell empty"></div>
        </div>
    
        <div class="content" id="content1">This is the content</div>
    
        <div class="content hidden" id="content2">THIS IS THE OTHER CONTENT</div>
    
    </div>
    

    CSS

    div#page{
        display:table;
        border-collapse:collapse;
        width:500px;
        position:relative;
    }
    
    div#top_row, div#middle_row{
        display:table-row;
    }
    
    div.top_row_cell, div.middle_row_cell{
        display:table-cell;
        width:160px;
        height:50px;
        border:1px solid red;
        border-collapse:collapse;
        text-align:center;
    }
    
    div.middle_row_cell.empty{
        border:none;
    }
    
    div.content{
        display:block;
        position:absolute;
        top:52px;
        left:166px;
        background:red;
        color:white;
        width:334px;
        height:51px;
    }
    
    div.hidden{
        display:none;
    }
    

    JS

    $('#tab1').click(function(){
        $('.content').addClass('hidden');
        $('#content1').removeClass('hidden');                
    });
    
    $('#tab2').click(function(){
        $('.content').addClass('hidden');
        $('#content2').removeClass('hidden');                
    });
    

    Working Example: http://jsfiddle.net/jasongennaro/9W7NE/

    NOTE:

    1. the jQuery is super simplified and is just for show. More robust logic is needed

    2. I only coded clicks for tabs 1 and 2

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We would like to implement a web form that automatically saves content at regular
I would like to implement asynchronous email sending in my web application when users
I would like to implement a post build event that performs the following actions
I am working on a web forms page which has a GridView which contains
I would like to implement something similar to a c# delegate method in PHP.
I would like to implement a data access object pattern in C++, but preferably
I would like to implement a command line interface for a Java application. This
I would like to implement an interactive evolutionary algorithm for generating music (probably just
I would like to implement a producer/consumer scenario that obeys interfaces that are roughly:
I would like to implement the method User.calculate_hashed_password . I'm trying to use the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.