main container should be 90% of the screen size

should i give % values for main container and work there or it will fit accordingly when i add all elements
13 Replies
Zach
Zach17mo ago
so if you want it to be 90% width width: 90%;
Avinash
Avinash17mo ago
yeah i did that, by the looks the main container (the entire content) is not 90% of the screen height/width
Zach
Zach17mo ago
what do your devtoolssay?
13eck
13eck17mo ago
What’s the code look like? Percentage is based on the patent element so if it’s not at 100% then the element you’re working on won’t be 90% off the viewport. Of course, avoid the compounding issue you could use 90vw instead. Most of the viewport unit issues arise from height and not with.
Avinash
Avinash17mo ago

body{
height: 100%;
}

/* main container has 3 sections
1.header 2. section 3. main-content*/

.main-container{
height: 97.5%;
display: flex;
flex-direction: column;
}

/* main content has 2 sections
1.left side 2. right side*/

.main-content {
height: 85%;
display: flex;
}

/* left side has 2 sections
1.top part 2. bottom part*/



.leftside{
display: flex;
flex-direction: column;
width: 80%;
}

/* top part has 3 sections
1.toppart1 2.toppart2 3. toppart3*/

.toppart{
display: flex;
width: 47.5;
}

body{
height: 100%;
}

/* main container has 3 sections
1.header 2. section 3. main-content*/

.main-container{
height: 97.5%;
display: flex;
flex-direction: column;
}

/* main content has 2 sections
1.left side 2. right side*/

.main-content {
height: 85%;
display: flex;
}

/* left side has 2 sections
1.top part 2. bottom part*/



.leftside{
display: flex;
flex-direction: column;
width: 80%;
}

/* top part has 3 sections
1.toppart1 2.toppart2 3. toppart3*/

.toppart{
display: flex;
width: 47.5;
}
I hope im not confusing
13eck
13eck17mo ago
I’m a big fan of letting the content dictate the size of its element and seeing all those set height and widths make me cringe
Avinash
Avinash17mo ago
so how should i do it??? cause content div has background image so setting width is going to be crazy
13eck
13eck17mo ago
Background images changes things a bit since they don’t inherently have any size. In that case, I would suggest using aspect-ratio and setting a width. But honestly, a lot of weather apps get by just fine with one column and each new section below the previous. Very mobile-friendly and you don’t need to worry about breakpoints due when to do side-by-side
Avinash
Avinash17mo ago
i wanted to do something like this. i want it to be responsive.
Avinash
Avinash17mo ago
so without setting height and width how should one proceed ? how would you do it
13eck
13eck17mo ago
If you want that kind of layout you’ll need to set with for sure. Both flexbox and grid can auto-scale height to match My suggestion would be this: For the main content, the side-by-side bit, is to use grid: 3fr, 1fr. This way the left-side content is 75% of the available width and the sidebar is the remaining 25%. Give a gap of 2rem or so. The inner bits of the left-hand column could be done in either flex or grid, whichever you prefer. I see three block-level elements: upper text, inner third, and bottom daily. using either 1fr or flex-basis: 0 will make them all the same width without having to specify. From there, it's just a matter of laying out each individual element like normal. I don't see anything inside any of them that requires any fancy CSS (besides the background image on the right-most of the middle thirds). For responsiveness, you'll want a breakpoint where the sidebar drops below the main content. Same for the mid-thirds of the left-side column. If you want the daily forecast to always be in a line like that you need to add overflow-x: scroll;
Avinash
Avinash17mo ago
ok Thats a lot of things to process. quite frank i dont know anything about grid. so i have to look into it One thing about grid is that it cannot be used in flexbox right? Flex can go in grid but not the other way?
13eck
13eck17mo ago
There is nothing stopping you from using a grid within flexbox You can nest either in the other
Want results from more Discord servers?
Add your server
More Posts