6,200 questions
0 votes
1 answer
103 views
I'm using the primereact library, specifically a dropdown. How can I modify it's height?
I'm trying to modify a primereact theme for the dropdowns, but it doesn't seem to change a bit... Anytime that I need to modify any component brought by an external library I'm having this kind of ...
3 votes
2 answers
68 views
Set div height to half the width minus 50px
To make my div’s height equal to its width, I use aspect-ratio. For example: width: calc((100% / 5) - 8px); aspect-ratio: 1; Now, I want the height to be half the width minus 50px. I can’t just use ...
0 votes
0 answers
26 views
How to measure heights of a sample in a JPK file?
I am doing some surface analyses using an AFM. I have .jpk files which I can open using the JPK Software and Gwyddion and I am also getting the line plot profiles but I am unsure how to extract the ...
0 votes
0 answers
49 views
Tracking viewport height when keyboard is open on iOS
I have an app on 100dvh, fixed header at the top, fixed footer at the bottom, in the middle everything that is left with overflow-auto. The problem on iOS is that when I put the cursor on the input, ...
0 votes
0 answers
40 views
How can we have a children element fill the height of its parent when not using a fixed height but fit-content
I have a menu consisting of ul and li simplified as below. I do not want to set a fixed height in px neither for ul or li. For the li I am using height:fit-content. The height of all the li might ...
0 votes
0 answers
75 views
Dynamic Cell Height (SwiftUI View in UIKit TableView) Weird Animation
I am attempting to adjust the height of a SwiftUIView when pressing the corresponding button. However, the animation that occurs when the height is adjusted does not align with my desired behavior. ...
0 votes
2 answers
59 views
React Native: Can't make the view of a modal take up 100% height for android?
I'm trying to make the view in a Modal take up 100% of the height in an Android Emulator for ReactNative. This is a modified code from the React Native website itself on modals to prove my point: ...
0 votes
0 answers
98 views
In .Net MAUI when used data template the child height is not updated to parent height
In . NET MAUI when used data template and inside the data template when used grid or stack layout and inside it used label or any and setting the height for the label but not for parent (grid or stack ...
0 votes
1 answer
66 views
Min. height for stacked bar chartjs
I've a vertically stacked bar chart in chart.js. Since the bars are being generated based on some userinput, it's possible that I get a chart that would look something like this: I want to enforce a ...
0 votes
2 answers
49 views
Kivy ScrollView minimum_height no longer dynamic with nested layouts in python
Currently battling with Kivy nested layotus and scorll view. I dynamically add or remove from a table with some buttons. As the page grows I expect self.minimum_height of the parent CreatePly layout ...
0 votes
2 answers
64 views
Is `auto` a valid value for the HTML attributes `height` and `width`?
Is auto a valid value for the HTML attributes height and width ? Please provide a reputable source. I was unable to find a reputable source saying yes or no (i.e. specifically settling this issue one ...
0 votes
0 answers
111 views
How to remove the black area from youtube_player_flutter and show the video on full view?
I am using youtube_player_flutter package for displaying YouTube videos in my app but the problem I am facing is that there is a black area visible above and below of the video: How I can remove the ...
0 votes
0 answers
38 views
How to Fix Width and Height Not Applying in Login Modal?
The modal in the first code block is the same as LoginModal, but even though I specified the width and height in LoginModal (as shown in the second code block), the width and height are not being ...
0 votes
1 answer
122 views
Why height of my PageLayout is too short?
I am using OOjs-ui to develope a game I am creating a PageLayout, but its height is only like a small titlein it(not limited max-height, height is auto) <link href="https://cdnjs.cloudflare.com/...
0 votes
2 answers
85 views
Dynamic Height Cell with XIB: Including UILabel and UIImageView
I’m trying to design a UITableViewCell with XIB that has the following layout and behavior: A UIView on the left with a fixed size of 44x44. A UILabel next to it, which expands dynamically based on ...