Page 1 of 1

what is autohotkey listview equivalent in HTML?

Posted: 11 Feb 2017, 14:14
by Wooho
hello i want to create something like this in Html with its Higlighting for quizz app. for example it will be numbered and after number will be question for navigation, thx for help
Image

Re: what is autohotkey listview equivalent in HTML?

Posted: 12 Feb 2017, 12:21
by tidbit
hey, that's me!

don't think there is one. just need lots of <div>'s (or a table) for each row (possibly each 'cell' (row+column)) inside of bigger div that has a fixed width/height style property (css) of: overflow: auto; ... which will add the scrollbars.

something like:
<main div>
<div for row 1>
<div for row 2>
<div for row 3>
</main div>

... or simply a table