-
Hi there. Novice here, please bear with me! I've been struggling with a layout, and I've run out of ideas on how to solve my problem. Here's my test code:
It produces the following result in my browser: That's pretty close to what I want, except for the fact that I'd like the My question is: how can I make PS: I don't know if my use of |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Oh, well, I had almost lost hope, but then found out that
It produces the result below, which is almost right but note that the page has a scroll bar... I don't want it there, I just want the scroll bars of the virtual scroll and the code editor; there's no need for another, global scroll bar! I'm hypothesizing that this happens because the |
Beta Was this translation helpful? Give feedback.
The
vh
unit in CSS correspond to View Height and like you said, it is off because of the toolbar. But you can do some calculation in css, likeheight: calc(70vh - 48px);