1

Need help here.
I have to develop a HTML table layout without using <table> tag and CSS display:table styles.

Anyone has any ideas to share?

Comments
  • 1
    Why the fuck do you need to do that?
  • 0
    That's a task given by my senior at work. And I have no idea why?
  • 1
    Sounds like a trivia question. There are plenty of ways to do that.. Search for "CSS grids".

    Welcome to devRant.
  • 1
    flexbox or grid (:
  • 1
    <div class="wrap">
    <div class="c">use more of these</>
    </>

    .wrap{
    height, width
    }
    .c{
    h,w
    display: inline
    float:left
    }
  • 0
    Can't use any frameworks. They are restricted. Need pure CSS.
  • 0
    Thank you for the suggestion. I have tried that.
  • 1
    @Clear0Ff thank you for your suggestions. I finally implemented the table with both Grid and Flex.
    Both the implementation satisfy my requirements. Hope my senior accepts it.
  • 0
    Thank you everyone for you suggestions. Finally I implemented it using Grid and Flex.
  • 1
    @travipraveen i am glad :D good luck , hope he accepts it
Add Comment