Questions tagged [vertical-scrolling]

In computer displays, film-making, television production, and other kinetic displays, scrolling is sliding text, images or video across a monitor or display, vertically or horizontally.

"Scrolling", as such, does not change the layout of the text or pictures, but moves (pans or tilts) the user's view across what is apparently a larger image that is not wholly seen. A common television and movie special effect is to scroll credits, while leaving the background stationary. Scrolling may take place completely without user intervention (as in film credits) or, on an interactive device, be triggered by touchscreen or computer mouse motion or a keypress and continue without further intervention until a further user action, or be entirely controlled by input devices.

642 questions
504
votes
13 answers

HTML table with 100% width, with vertical scroll inside tbody

How can I set for 100% width and put only inside vertical scroll for some height? table { width: 100%; display:block; } thead { display: inline-block; width: 100%; height: 20px; } tbody { height:…
Marko S
  • 5,097
  • 3
  • 14
  • 11
80
votes
10 answers

Horizontal ListView inside a Vertical ScrollView in Flutter

I am trying to achieve a very common behavior nowadays which is to have a horizontal List within another widget that is at the same time scrollable. Think something like the home screen of the IMDb app: So I want to have a widget that scrolls…
74
votes
2 answers

Synchronise vertical/horizontal scrolling in split view

Is there a way in VS Code to synchronise vertical or horizontal scrolling in splitted view ? Like in Notepad++ for instance : From buttons: From View menu:
54
votes
6 answers

Vertical Scrollbar leads to horizontal scrollbar

My CSS looks like this: div.SOMECLASS { position: absolute; max-height: 300px height: auto; width: auto; overflow: auto; ... } The div height and width scale automatically. The height has a fixed maximum though: as soon as this value is…
fgysin
  • 11,329
  • 13
  • 61
  • 94
46
votes
7 answers

Hiding the ActionBar on RecyclerView/ListView onScroll

In my application I got an activity with some kind of actionbar at the top and the listview below it. What I want to do - is to scroll it UP with the list, so it hides and then, when the list is being scrolled down - it should scroll down with the…
43
votes
6 answers

Where should 'app:layout_behavior' be set?

Should it be set at the AppBarLayout sibling's parent or at the first Scrollable View inside its sibling? With Material Design for Android, there are Views that let us work with the behavior of the layout depending on its surroundings, one of them…
33
votes
8 answers

iOS Safari/Chrome - Unwanted scrolling when focusing an input inside the modal

Tested in Safari and Chrome - the same result, so I think it's iOS issue. This happens only if there's an input inside the modal and I tap that input. In the same moment that input got focus and native iOS keyboard become visible. Page below modal…
Limon Monte
  • 52,539
  • 45
  • 182
  • 213
32
votes
3 answers

CSS Disabled scrolling

I came across an issue with one of our web sites: In IE9 the page had a vertical scrollbar, but you couldn't use the mousewheel, arrow keys, pgup/pgdwn to scroll. The only way to scroll was to actually click/hold and move the scrollbar. I…
Sheff
  • 421
  • 1
  • 5
  • 6
32
votes
3 answers

How to create a scrollable Div Tag Vertically?

I want to create a scrollable div tag with a fixed height that gets a vertical scroll bar. I'm trying to get this to work in chrome. This is my CSS: #designDiv { width:249px; height:299px; background-color:Gray; overflow-y: scroll; …
user276889
23
votes
3 answers

How to Add a Scrollbar to Window in C#

I have created a window as follows: Window myWindow = new Window(); How can I add a Vertical Scroll Bar to this Windows and make the Scroll Bar only visible if the Height isn't large enough to show all the elements.
Shamim Hafiz - MSFT
  • 21,454
  • 43
  • 116
  • 176
19
votes
4 answers

How to make a vertical scrolling view on iOS?

Can someone please guide me to a tutorial , on how to implement a vertical scrolling view on my iOS app? I can't believe that the last 2 days , I can't find a single working example on just a vertical scrolling view. All the tutorials are about…
user1498477
18
votes
6 answers

TableLayoutPanel displays vertical scroll

I have TableLayoutPanel for dynamic creation of controls with AutoScroll = true. It's work fine when I add new controls. But when I remove and all controls are visible, vertical scroll is visible. Some screenshots here: Expected/correct scroll…
17
votes
9 answers

My fixed background made scrolling the site very slow, what can I do to improve it?

I changed the background of my discussion forum using the CSS below http://forum.antinovaordemmundial.com html { background: url(http://antinovaordemmundial.com/mystuff/logo_blog.jpg) no-repeat center center fixed; background-image:…
Emerson
  • 935
  • 4
  • 13
  • 27
16
votes
2 answers

Compose LazyColumn scrolling behavior inside of CoordinatorLayout via ComposeView interop

Problem - scrolling downward causes the bottom sheet to scroll rather than giving scroll priority to the LazyColumn (RecyclerView did not have this problem. It was wrapped by a NestedScrollView) I've just introduced a Compose LazyColumn replacement…
16
votes
1 answer

How to create a shelf like view in Android?

How to create a shelf like view in android that show several book in any row? Also, it should have horizontal and vertical features like the moon+reader app has. I can write a shelf view that moves horizontally but it doesn't fully work. I used a…
azad
  • 361
  • 2
  • 5
  • 17
1
2 3
42 43