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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T14:15:01+00:00 2026-06-12T14:15:01+00:00

I am developing a cup system, and I would like to get some advice

  • 0

I am developing a cup system, and I would like to get some advice to the bracket-part. The desirable result should look something like this:

Brackets

http://www.partyplanning101.com.php5-7.dfw1-1.websitetestlink.com/wp-content/uploads/2009/02/tornament_board.gif

I would like to build op the page using div’s combined with CSS – and not tables. How should I make this most optimally? Do any of you have a sample of this?

I am only asking for help regarding the HTML/CSS part, nothing else.

  • 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-06-12T14:15:02+00:00Added an answer on June 12, 2026 at 2:15 pm

    This seemed interesting so I started developing, have to get back to work now so this is how far I got. The basics are laid out for you so you can finish it from here I think, though I will probably finish it in my spare time too and come and post it later

    http://jsfiddle.net/AcuPp/

    Update:

    Finished – http://jsfiddle.net/AcuPp/3/

    CSS

    #container { 
        width: 800px; 
        height: 600px; 
        float: left; 
    }
    
    section { 
        width: 130px; 
        height: 520px; 
        float: left;
    }
    
    section > div { 
        width: 100px; 
        height: 20px; 
        border: 1px solid #000; 
        margin: 10px 0; 
        background: #73789F; 
        color: white; 
        padding: 10px 10px 10px 20px;
    }
    
    section > div:nth-child(2n) { 
        margin-bottom: 40px;
    }
    
    .connecter { 
        width: 30px; 
        height: 520px; 
        float: left; 
    }
    
    .line { 
        width: 30px; 
        height: 520px; 
        float: left; 
    }
    
    .connecter div { 
        border: 1px solid #000; 
        border-left: none; 
        height: 50px; 
        width: 100%; 
        margin: 80px 0 0 1px;
    }
    
    .connecter div:first-child { 
        margin: 32px 0 0 1px; 
    }
    
    .line div { 
        border-top: 1px solid #000; 
        margin: 133px 0 0 1px; 
    }
    
    .line div:first-child { 
        margin-top: 55px; 
    }
    
    #quarterFinals > div { 
        margin-top: 91px; 
    }
    
    #quarterFinals > div:first-child { 
        margin-top: 37px; 
    }
    
    #conn2 div { 
        margin-top: 133px; 
        height: 133px;
    }
    
    #conn2 div:first-child { 
        margin-top: 57px; 
    }
    
    #line2 div { 
        margin-top: 270px; 
    }
    
    #line2 div:first-child { 
        margin-top: 125px; 
    }
    #semiFinals > div { 
        margin-top: 230px; 
    }
    #semiFinals > div:first-child { 
        margin-top: 105px; 
    }
    #conn3 div { 
        margin-top: 125px; 
        height: 270px;
    }
    
    #line3 div { 
        margin-top: 270px; 
    }
    
    #final > div { 
        margin-top: 250px; 
    }
    

    ​

    HTML

    <article id="container">
    
    <section>
        <div>Player 1</div>
        <div>Player 2</div>
        <div>Player 3</div>
        <div>Player 4</div>
        <div>Player 5</div>
        <div>Player 6</div>
        <div>Player 7</div>
        <div>Player 8</div>
    </section>
    
    <div class="connecter">
        <div></div>
        <div></div>
        <div></div>
        <div></div>
    </div>
    
    <div class="line">
        <div>
        </div><div>
        </div><div>
        </div><div>
        </div>
    </div>
    
    <section id="quarterFinals">
        <div></div>
        <div></div>
        <div></div>
        <div></div>
    </section>
    
    <div class="connecter" id="conn2">
        <div></div>
        <div></div>
    </div>
    
    <div class="line" id="line2">
        <div></div>
        <div></div>
    </div>
    
    <section id="semiFinals">
        <div></div>
        <div></div>
    </section>
    
    <div class="connecter" id="conn3">
        <div></div>
    </div>
    
    <div class="line" id="line3">
        <div></div>
    </div>
    
    <section id="final">
        <div></div>
    </section>
    
    </article>
    
    ​
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

developing for Android phone(ver 1.5) I would like to know if there is an
Developing a project of mine I realize I have a need for some level
For developing an devices monitor system, I am using a InetAdress isReachable method to
iam developing one application.In that i need to get the music files from the
Developing a series of POCOs on my project, and just realized that some of
Developing an app where all tabular data is returned as an object. Some cells
Developing with Google Maps v3. For some sort of reason, my custom marker icon
Developing search utility to search a file entire computer system, works fine on windows
Developing using MVC-3, Razor, C# Been searching around and cannot find advice I'm looking
Developing a web app which should enable users to organize the events on their

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.