I have the following JSFiddle where there is a grid layout and when you hit Map Options on the Grid button, it puts the content of blue square in those squares. I want to reduce the size of the all the squares since the text content is not big. I am looking to reduce it to something of this size as shown in the Jsfiddle
Such that user won’t have to scroll all the way down to view everything. On a big 27 inch monitor, I can only see the square until Row C as shown below:
Thanks, Paul for chiming in. Yes, I think that will do. Looks like I might have to keep the max-width to 1200 or 1400px. Otherwise, the text is getting difficult to read. That might mean that some scrolling can’t be avoided for the user.
The content of the blue “options” is not square so I do not understand why you want the grid elements below to be square.
Deleting aspect ratio: 1/1 would reduce the height of the grid items so scrolling would be reduced.
You could also sqeeze everything up by reducing margins and padding everywhere. For example you have big 2rem top and bottom margins on your “phrase” <div>. You have large default margins on your <h1> and <h2> elements. You have 1rem padding on all four sides of your grid elements. If you really want to reduce scrolling, make all margins and padding throughout just 2px and go from there.
Of course you could keep the aspect ratio declaration but change its value. The value does not need to appear as a fraction: it can be just a number with or without decimal part.
At present the height of your grid items is controlled by the aspect ratio. If you delete the aspect ratio declaration the height will become 2rem due to the 1rem padding on line 82. When you then drag text from a blue rectangle into a grid item, the height increases by the rendered height of the text which is 18 pixels (on my browser). This increases the height of all grid items in the row. I therefore suggest you replace aspect-ratio: 1/1; with min-height: 50px; (or larger value) so there is no change in height when text is dragged in. However I am not too happy that the 50px is a “magic number”. Using min-height: 3.2rem; would be better.
Are you assuming all users of your web page will have a large screen?
I think there may be too much on your web page to be able to get this to work satisfactorily on tablets: with users able to drag with a finger from top of options to bottom of grid.
I note also that text in the options is contenteditable so users can lengthen the text (currently you have to use left and right arrow keys to place caret in the text).