treehouse : what would you like to learn today?
Web Design Web Development iOS Development

Responsive Pagination CSS

  • Is it possible to make pagination responsive and fill my div container? I thought setting display to table-cell would do it, but this didn't help.

    My pagination can be found here... and I can't figure it out for the life of me.

    .page-numbers {
      font-size:0.75em
    }
    a.page-numbers {
      background:#449BB5;
      color:#FFF;
      display:inline-block;
      padding:1em
    }
    .page-numbers.current {
      background:#000;
      display:inline-block;
      padding:1em
    }
    .page-numbers.dots {
      display:inline-block;
      padding:1em 0
    }