I have a section of the web page I am building that is dedicated to news events. These are simply entered as follows currently.
-
2021-02-19 21:51
Wrap your table in a div using overflow-y: auto; like this
HTML
CSS
.scrollable {
height: 100px; /* or any value */
overflow-y: auto;
}
|