Questions tagged [sizing]

The operation of making appropriate scale according to size which can be dynamic.

Applicable in screen sizes (html) or load on server (load testing)

Please see other related tags: and .

234 questions
0
votes
0 answers

Dynamically size table based on screen size for web app

html { height: 100%; } body { min-height: 100vh; min-height: -webkit-fill-available;/*only thing so far that makes the footer section visible */ width: 100%; margin: 0; padding: 0; position:…
0
votes
2 answers

WPF Prism Dialog Window - Binding to the DialogWindow's Width and Height

I am trying to save the width and height of a Prism WPF dialog to be retrieved on next use of the dialog. I have a static class that is being serialized into xml to save the properties, so I tried to hook it up in the UserControl's code behind by…
Samer
  • 11
  • 1
  • 6
0
votes
2 answers

Strange diagonal viewBox SVG Behaviour

Trying to figure out how this svg viewBox thing works but sadly the code below is breaking all logic we know lol. Please someone explain if this is a bug or it's the correct svg behaviour. I can't see what I'm getting wrong...
math
  • 167
  • 2
  • 13
0
votes
3 answers

How to have 1 column in a multiple column list be of the same width w/out using a frame modifier of width so to retain flexibility

I have a list of entries that consist of multiple columns of UI with all except the first free to be uniquely sized horizontally (i.e. they’re as short/long as their content demands). I know with the first consistently sized column I can set a frame…
Barrrdi
  • 902
  • 13
  • 33
0
votes
1 answer

Dynamic Sizing of Dialog Boxes

I'm working on a PWA for a chromebook(schools) and I'm wondering what the most best way to have dynamic sizing of dialog boxes. I have methods set up for each HTML element that we can use and pass the values we need for this (input/checkbox/label)…
user2418670
0
votes
1 answer

How to size memory required for TimesTen In-memory Database?

How do I figure out the right values for the memory parameters in TimesTen? How much memory do I need based on my tables and data?
Chris J
  • 81
  • 5
0
votes
1 answer

How to get boxes to adjust by page space rather than content

I've got the below layout and all I'm trying to do is get the height of the boxes at the bottom to be sized by the space available in the browser rather than their content. I thought it'd be a simple 'height:33%' but looks like it'll be something to…
0
votes
1 answer

Material-UI Sizing Confusion

In the sizing documentation, it says "Easily make an element as wide or as tall (relative to its parent) with the width and height utilities.". What I realize is that almost all the examples in system section of documentation, examples mostly…
Olgun Kaya
  • 2,519
  • 4
  • 32
  • 46
0
votes
2 answers

Sizing of Custom-Select Labels in Bootstrap 4

I have a problem with sizing of input elements. When iam creating an input-group (with bootstrap 4.5) and then want them to be input-group-sm, only the custom select fields are in small size, the labels in front of them are in normal size.
seehma
  • 23
  • 1
  • 6
0
votes
1 answer

How do I make my label in Unity size to fit its text?

I am working on the credits for my mobile game and I have a license attribution thing at the end that is relatively long. On normal phone screen sizes it fits properly, but on notched phones, a big chunk of the end gets cut off and on tablets, there…
Collin Vesel
  • 61
  • 1
  • 1
  • 9
0
votes
2 answers

In flutter, I want the Icon within a container to take up maximum size of the container

Widget build(BuildContext context) { return Container( child: Column( crossAxisAlignment: CrossAxisAlignment.stretch, children: [ Flexible( flex: 1, child: Container( …
Vinay Kumar
  • 33
  • 1
  • 1
  • 5
0
votes
2 answers

Opening a new jframe with the same properties as the closed one

How can I have the newly open jframe have the same properties like Size and position on screen. Thanks
gheystyle
  • 65
  • 3
  • 9
0
votes
1 answer

How do i create a constraint for my button, so it wont mess up the size of it

i have a button i want to have the same distance from screen edge on all devices, i put a constraint on right which works nicely but on bottom it messed up the size of my button. I tried making it bigger with the same constraint but it gives me…
0
votes
1 answer

HTML/CSS trying to size buttons so they are all the same size

Trying to size these buttons so they all the same size. display: block; padding: 0 2rem; border: 1px solid #fff; font-size: 12px; color: #000000; height: 45px; line-height: 43px; margin: 5px; } Here is the css I am…
Neiko
  • 1
  • 1
  • 6
0
votes
1 answer

Resizing Kivy Scroll View Label

I am trying to add a scroll label to a rectangle in my Kivy application. My scroll label is working perfectly, but I cannot resize the scroll label so it fits inside my rectangle. I tried to mess with the height or the size_hint, but then it won't…
pogh10
  • 41
  • 10