3

I want to display an order list in a three column layout as per this question but I'd like to respect the page breaks so that the next element in the list on the second page returns to the top of the first column.

p1
1.           4.           7.
2.           5.           8.
3.           6.           9.

p2
10.          12.          14.
11.          13.          15.
Community
  • 1
  • 1
emeraldjava
  • 10,894
  • 26
  • 97
  • 170
  • what is your html? What is page? – Gavriel May 10 '12 at 11:31
  • Is this something like what you are looking for? http://www.css3.info/preview/multi-column-layout/ Its not cross browser capable though – Undefined May 10 '12 at 11:54
  • Can you explain what you mean by "page" and "page break"? I am assuming that your webpage is somehow "paginated" - but you'll need to be more specific as to what you mean... – howlee May 11 '12 at 09:31

1 Answers1

-1

Let's say you have 18 items on your order list. Do you want to display 9 items per a page and when you click a button you want it to display 10th to 18th items? If that's the case and if your page will be asp or jsp or php, you can use data paging methods. For a sample view, you can check this page : https://stackoverflow.com/unanswered/tagged/?tab=votes&pagesize=15

But if your page will be plain old html page, i suggest you to work some jQuery :)

Community
  • 1
  • 1