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 4546804
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T16:00:20+00:00 2026-05-21T16:00:20+00:00

I need a very simple, straightforward CSS/HTML flowchart in the format below: Node1 |

  • 0

I need a very simple, straightforward CSS/HTML flowchart in the format below:

Node1
  |
Node2
  |
Node3
  |
Node4
  |
Node5
  |
Node6

I know next to nothing about CSS but attempted to modify the one detailed in the link below. The Problem was I only want a linear, vertical chart and it ended up all over the place!

http://www.htmlforums.com/css/t-flowchart-using-css-85999.html

Can anyone help?

  • 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-21T16:00:21+00:00Added an answer on May 21, 2026 at 4:00 pm

    Hope this is works for you:

    http://jsfiddle.net/wkCNm/


    In case the JS Fiddle disappears, here is the code.

    HTML

    <h1>A simple family tree using 32 divs</h1>
    
    <div id="container">
    
    <div id="no1"><a href="#">Production Director</a></div>
    <div id="line1"></div>
    <div id="no1"><a href="#">Production Director</a></div>
    <div id="line1"></div>
    <div id="no1"><a href="#">Production Director</a></div>
    <div id="line1"></div>
    <div id="no1"><a href="#">Production Director</a></div>
    
    </div>
    

    CSS

    h1 {
        width:580px;
        font-family:verdana,arial,helvetica,sans-serif;
        font-size:18px;
        text-align:center;
        margin:40px auto;
    }
    #container {
        width:580px;
        font-family:verdana,arial,helvetica,sans-serif;
        font-size:11px;
        text-align:center;
        margin:auto;
    }
    #container a {
        display:block;
        color:#000;
        text-decoration:none;
        background-color:#f6f6ff;
    }
    #container a:hover {
        color:#900;
        background-color:#f6f6ff;
    }
    #no1 {
        width:190px;
        line-height:60px;
        border:1px solid #000;
        margin:auto;
    }
    #no1 a {
        height:60px;
    }
    #line1 {
        font-size:0;
        width:1px;
        height:20px;
        color:#fff;
        background-color:#000;
        margin:auto;
    }
    #line2 {
        font-size:0;
        width:424px;
        height:1px;
        color:#fff;
        background-color:#000;
        margin:auto;
    }
    #line3 {
        font-size:0;
        display:inline;
        width:1px;
        height:20px;
        color:#fff;
        background-color:#000;
        margin-left:78px;
        float:left;
    }
    #line4,#line5,#line6 {
        font-size:0;
        display:inline;
        width:1px;
        height:20px;
        color:#fff;
        background-color:#000;
        margin-left:140px;
        float:left;
    }
    #no2 {
        display:inline;
        border:1px solid #000;
        clear:both;
        margin-left:35px;
        float:left;
    }
    #no2 a,#no4 a,#no8 a {
        width:84px;
        height:50px;
        padding-top:8px;
    }
    #no3 {
        display:inline;
        border:1px solid #000;
        margin-left:58px;
        float:left;
    }
    #no3 a,#no5 a,#no6 a,#no7 a,#no9 a {
        width:84px;
        height:42px;
        padding-top:16px;
    }
    #no4 {
        display:inline;
        border:1px solid #000;
        margin-left:53px;
        float:left;
    }
    #no5 {
        display:inline;
        border:1px solid #000;
        margin-left:55px;
        float:left;
    }
    #line7,#line13 {
        font-size:0;
        display:inline;
        width:1px;
        height:38px;
        color:#fff;
        background-color:#000;
        margin-left:219px;
        float:left;
    }
    #line8,#line14 {
        font-size:0;
        display:inline;
        width:1px;
        height:38px;
        color:#fff;
        background-color:#000;
        margin-left:281px;
        float:left;
    }
    #no6,#no8 {
        display:inline;
        border:1px solid #000;
        margin-left:107px;
        float:left;
    }
    #line9,#line11,#line15,#line17 {
        font-size:0;
        display:inline;
        width:26px;
        height:1px;
        color:#fff;
        background-color:#000;
        margin-top:29px;
        float:left;
    }
    #line10,#line12,#line16,#line18 {
        font-size:0;
        display:inline;
        width:1px;
        height:60px;
        color:#fff;
        background-color:#000;
        float:left;
    }
    #line16,#line18 {
        height:30px;
    }
    #no7,#no9 {
        display:inline;
        border:1px solid #000;
        margin-left:169px;
        float:left;
    }
    .clear {
        clear:both;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need a very simple and clear example of how to create an OCX
I need to be able to merge two (very simple) JavaScript objects at runtime.
I need to do a few very simple URL manipulations in Java. Like get
i have very simple problem. I need to create model, that represent element of
I need to do very simple thing - pass current URL from JSF (2.0)
I need a very simple function to draw a bunch of lines with anti-aliasing.
I need a very simple c++ function that calls a lua function that returns
i need to build a very simple wizard that will import a text file
I need to build a very simple administration interface for maintaining website content. Not
I need to make a kext which does a very simple function. Whenever a

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.