Thursday, August 26, 2021

HTML CSS to put in center

To put the item in center of the page

 height: 100%;

 display: flex;          

 justify-content:center; // horizontal

 align-items: center; // verticial 


If the flex is column, 

justify-items: center;

align-content: center

No comments:

Post a Comment

Comment!!

Design questions

 1. Design a Rate Limiter Every company covered this. Know: Sliding window algorithms, Redis, race condition handling, token bucket vs. leak...