Site logo

[Support request] how to use full screen responsive

Home Forums Support [Support request] how to use full screen responsive

Home Forums Support how to use full screen responsive

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1593574
    david

    Hi, What’s the recommended way so page elements occupy the space they require and the collection of elements use the maximum space available. The best I’ve found so far is:
    The outer container:
    <div style="position: absolute; top: 300px; right: 10px; bottom: 0; left: 10px;">
    and within this container – css grid:

      .grid {display: grid;
             grid-template-columns: repeat( auto-fit, minmax(100px, max-content) );
             grid-auto-rows: minmax(min-content, max-content); 
             grid-template-areas:
             "pic pic bot-name bot-name bot-name"
             "pic pic syn-fmly syn-fmly syn-fmly";
            grid-gap: 10px;
           }
    

    Really like to know the best responsive design so the template uses the full screen.
    I seem to remember reading that using “position: absolute” is not recommended, but without this there always seems to be large empty areas on the left and right sides.
    Thanks for any help
    David

    #1594183
    Leo
    Staff
    Customer Support

    Hi there,

    Not sure if fully understand what you are trying to accomplish here.

    Can you link me to the site in question or an example?

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.