6,413 questions
1
vote
0
answers
30
views
How to make position: sticky work inside a CSS Grid child with overflow?
I am trying to create a layout where the page height is fixed to the viewport (100vh), the .sidebar and .content areas scroll independently, and a .content-header inside .content should stay sticky ...
-1
votes
0
answers
32
views
Dropdown menu from a navbar with overflow-x scroll and overflow-y visible [duplicate]
I’m working on creating a navigation bar that scrolls horizontally. So far, everything is going well. However, when a tab opens a dropdown menu, I want to disable vertical scrolling while keeping ...
0
votes
0
answers
21
views
overflow-x messes with iPad with touchpad
I have a solution with a row of items, scrollable horizontally, which is working fine everywhere, but when I scroll vertically over that row on my iPad with the trackpad, the scrolling stops and it ...
-1
votes
2
answers
167
views
Why std::cout does not show uint8 overflow but shows char overflow?
To be able to understand overflow in C++ I was trying some code snippets and realized this strange behaviour.
std::uint8_t ofInt = 255;
if ((ofInt + 1) == 0)
std::cout << "This is not ...
0
votes
2
answers
154
views
How can I make a table header wide as the page, when a cell contains horizontal overflow?
I want to use a collapsible table, that always has the width of the page.
Its header cell should always have the width of the page.
The cell below shows content that needs to be scrolled horizontally.
...
3
votes
3
answers
100
views
Simple Excel Macro throwing Run-time Error '6' Overflow
I am building an Excel Macro that will do a number of manipulations based on the oldest of three dates. For now, I only have the shell of the Macro which will only show a MsgBox.
Sub HighlightNextEDM(...
2
votes
1
answer
152
views
Box-Shadow Clipping Issue with horizontal scroll
I’m relatively new to CSS and building a website using HTML and CSS (no experience with JavaScript). I have a horizontal scrolling section for some highlight 'cards' using a CSS Grid. Each card has a ...
2
votes
0
answers
76
views
How to allow a slider item to overflow only from the top on hover, but hide overflow on the sides in a swiper slider? [closed]
Question:
I’m working with Swiper.js slider and have a hover effect on each slide where the slide grows in size and moves upward, overflowing outside the main slider container.
My goal is:
On hover, ...
1
vote
1
answer
80
views
How to make my container scrollable while keeping the text displaying partially outside of the container
I am trying to make a div element vertically scrollable while maintaining the header text to appear partially outside the div element like this:(https://i.sstatic.net/B95r6Fzu.png)
This is my code ...
0
votes
1
answer
175
views
Does scrollbar-gutter work with horizontal scrollbars?
I'm trying to use the scrollbar-gutter CSS property to reserve space for the scrollbar and avoid layout shifts. It works well for vertical scrolling, but I want it to reserve space for a horizontal ...
1
vote
0
answers
141
views
How can I handle overflow in bigint / int signed division with x86 idiv?
I have a serious problem I really want to solve. I am trying to implement void operator divide(uint32_t dividend[4],int32_t divisor,uint32_t "ient[4],int32_t &remainder). My algorithm is:
...
-1
votes
1
answer
109
views
Why in VBA (macos m1), Bitand throw an Overflow error?
Public enum eLogLocations
inListBox = 2&
inDebug = 4&
inFile = 8&
Everywhere = inListBox & inDebug & inFile
end enum
I use numbers directly but same error... and the ...
1
vote
0
answers
84
views
Why does this flex-container overflow?
I have a flex-container with a fractional pixel width with 8 flex-children. I expect the container to not overflow, but it does.
The browser is Chrome or Edge on Windows. (Not in Firefox.)
The ...
1
vote
2
answers
119
views
How can I add a scrollable container inside a flex column layout?
I have a simple flex column layout and some CSS helper classes (I added everything to the runnable code snippet).
Everything looks good...
...until I add a lot of text inside the red div.
/* Height ...
1
vote
1
answer
40
views
Flutter bottom sheet RenderFlex overflow when crossing SafeArea during height animation
I'm building a custom sliding comment panel in Flutter (like a bottom sheet).
It has 3 parts:
A drag handle at the top
A scrollable ListView for comments
A TextField at the bottom for user input
The ...
0
votes
1
answer
42
views
How do I stop Overflow from interfering with TranslateZ()?
I am trying to have a scrollable area that has a parallax effect using Vanilla Tilt.js when hovering over a Div. When I don't have Overflow on the Div, the parallax effect works, CodePen, but when I ...
0
votes
1
answer
85
views
I am unable to fix the overflow issue in my app that I am practicing with flutter from a course
The problem is that whenever I open the model bottom sheet and when the keyboard appears on pressing a text field the chart widget behind the ModalBottomSheet overflows and this only happens when I ...
1
vote
1
answer
71
views
Form disable the overflow
I try to implement an overflow in Form react-router, that's work in a classic <div></div> but when I use <Form></Form> my overflow doesn't work. I don't find any topic who talk ...
5
votes
2
answers
474
views
How can I make a child element escape a parent with overflow: hidden without breaking my layout?
I’m working on a layout where the parent element has the following properties:
.parent {
position: relative;
height: 350px;
border: 1px solid #ddd;
border-radius: 8px;
overflow: hidden;
...
0
votes
1
answer
34
views
Content within card stretches page when overflow occurs
I am working on a little productivity hub, where each card acts as a different section in the dashboard. For my todo card, whenever I add more content, the page stretches, isntead of the just making ...
0
votes
1
answer
97
views
Why is VBA only giving an overflow error when assigning arrays over a certain size
I have a code that needs to analyze a very large amount of data that has new data added regularly, and as such, the array size increases each week. The codes overall purpose is to compare the new data,...
0
votes
2
answers
52
views
Tab label shows white and text overflows when using long text
Steps to Reproduce
Put a few tabs into a DefaultTabController with relatively long labels.
Make sure you reduce the width of your browser window so that the tabs have no room to display in full.
...
0
votes
1
answer
61
views
scrollTop for div with image does not scroll to the top of the image
I have some piece of html containing an <ins> element somewhere. I want to show only the <ins> part and possibly some context above and below. My approach is to use a <div> with ...
1
vote
3
answers
208
views
C int overflow strange behavior
I know that signed int overflow is undefined in C.
I understood this as the resulting number is not predictable, but it is still a number.
However, this code does not behave like the result of an ...
1
vote
1
answer
69
views
How to Determine if Text is Overflowing & Handle Text Ellipses Removing the Overflow
I'm trying to write a function that determines whether the text has overflowed (to determine whether I should show a tooltip). How can I handle text ellipsis removing the overflow?
I have:
const ...