Hello AHTSHAM

GitHub PAGE HTML GitHub PAGE

important Links

https://systemflow.co/ https://webflow.com/ https://ngrok.com/

Work Brake soon be backed

Positions In CSS

Relative Position

Relative to elements Orignal position

    {
        position: relative;
        top: 30px;
        left: 60px;
    }

Absolute Position

Change positions relative to its Parent's Body

    {
        position: absolute;
        top: 579px;
        left: 420px;
    }

Fixed Position

Fixed positions relative to View Port

Remains at same Place even on Scrolling up/down

    {
        position: fixed;
    }

Sticky Position

Relative until in a View Port Then Acts as Fixed Position

    {
        position: sticky;
    }

..................

H. M. AHTSHAM AHMAD ZAHOOR

LISTs FORMATES

  1. ELEVEN
  2. TWELVE
  3. THIRTEEN

what is diff between display:none AND visiblity : hidden

ANS:- display :none removes the element from the flow, allowing other elements to fill in visiblity:hidden only hides the element,but space is allocated for it on the page em-unit represent percentage of its parent