I need to create two columns of bullet points

Discussion in 'HTML & Website Design' started by Ovlznvvz, Jul 30, 2011.

  1. #1
    I need 2 columns of bullet points in html.

    I've tried a few ways I found across the web, and they don't work. I'd like it to be within the same "<ul>"

    please advise, thank you.
     
    Ovlznvvz, Jul 30, 2011 IP
  2. zudhire

    zudhire Peon

    Messages:
    16
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    It is not possible to do in the same UL
     
    zudhire, Jul 31, 2011 IP
  3. JustAlex10

    JustAlex10 Member

    Messages:
    19
    Likes Received:
    0
    Best Answers:
    1
    Trophy Points:
    41
    #3
    
    <ul>
     <table width="300">
      <tr>
       <td>
        <li>Software</li>
        <li>Hardware</li>
        <li>Games</li>
       </td>
       <td>
        <li>Football</li>
        <li>Basketball</li>
        <li>Handball</li>
       </td>
      </tr>
     </table>
    </ul>
    
    HTML:
     
    JustAlex10, Aug 3, 2011 IP
  4. radiant_luv

    radiant_luv Peon

    Messages:
    1,327
    Likes Received:
    34
    Best Answers:
    1
    Trophy Points:
    0
    #4
    radiant_luv, Aug 3, 2011 IP
    freelancewebaz likes this.
  5. freelancewebaz

    freelancewebaz Well-Known Member

    Messages:
    976
    Likes Received:
    23
    Best Answers:
    1
    Trophy Points:
    145
    #5
    @radiant_luv: That's a good explanation of how to implement a multi-column ul.  Thanks for the link.
     
    freelancewebaz, Aug 3, 2011 IP
  6. radiant_luv

    radiant_luv Peon

    Messages:
    1,327
    Likes Received:
    34
    Best Answers:
    1
    Trophy Points:
    0
    #6
    You're welcome. Indeed, great resources are at A List Apart. Thanks.
     
    radiant_luv, Aug 3, 2011 IP