i tried a lot to position the boxes but nothing happed please help me out
Sapinder
@sapinder-palAll comments
- @vashista-kondetiSubmitted about 4 years ago@sapinder-palPosted about 4 years ago
Hi @Vashishta! You can use a
grid
layout like so-.first-box { grid-area: first; } .second-box { grid-area: second; } .third-box { grid-area: third; } .fourth { grid-area: fourth; } .features { display: grid; grid-template-columns: repeat(5, 1fr); //repeat 5 columns with equal proportions of width justify-content: center; grid-template-areas: "... ... first ... ..." "... second first third ..." "... second ... third ..." "... second fourth third ..." "... ... fourth ... ..."; }
You should read the documentation about grid layout!
0 - @DiarrahSubmitted about 4 years ago
Please review my site!
Anything I can do to make my code cleaner? Also, in your opinion, what could I do to improve your user experience with the project?
Thank you!
@sapinder-palPosted about 4 years agoYour projects are awesome-ly implemented @Diarrah. It's fabulous!
0 - @sagarkauravSubmitted about 4 years ago
Feedback appreciated
@sapinder-palPosted about 4 years agoYou did a nice job @sagarkaurav! One thing I would want you to know is that you have to keep in mind the users who set third-party cookies to block, and so do I. This is why my browser prevents frontendmentor from previewing your solution (the original url should work but on this site, it's considered third-party). In my previous challenge, I also encountered the same. So I applied a
try
andcatch
block in necessary places. You should also consider this. I had to turn off the third-party cookies to view your page :)1 - @sapinder-palSubmitted about 4 years ago
Please provide your feedback as it'll help me tackle my future projects in a better way!
@sapinder-palPosted about 4 years agoI appreciate your feedback. I'm thinking to improve upon my usage of sass, however, in this project I spent a great amount of my time in implementing a lot of webpack stuff like-
mini-css-extract-plugin
,postcss-loader
,autoprefixer
, etc., and understanding how everything works. I'm slowly improving my way of working and forgetting my bad practices. I'll try to improve my sass way of working. Could you please elaborate the 'BEM' and '7:1' you said about?0 - @SeyidayoSubmitted over 4 years ago