Question:

what are positioned elements?

by Israr Ahmad  |  2 years, 12 month(s) ago

0 LIKES UnLike

what are positioned elements?

 Tags: elements, positioned

   Report

1 ANSWERS

  1. Guest239952
    The CSS Positioned Elements are those HTML Elements which are positioned manually by the Web Designer, regardless of the Normal flow of the Design. The Position of that element can either be set as ABSOLUTE, RELATIVE, FIXED or STATIC (default)... STATIC (default): An element with position: static always has the position the normal flow of the page gives it (a static element ignores any top, bottom, left, or right declarations). RELATIVE: An element with position: relative moves an element relative to its normal position, so "left:20" adds 20 pixels to the element's LEFT position. ABSOLUTE: An element with position: absolute is positioned at the specified coordinates relative to its containing block. The element's position is specified with the "left", "top", "right", and "bottom" properties. FIXED: An element with position: fixed is positioned at the specified coordinates relative to the browser window. The element's position is specified with the "left", "top", "right", and "bottom" properties. The element remains at that position regardless of scrolling. Works in IE7 (strict mode).

Israr Ahmad QUESTIONS

Question Stats

Latest activity: 2 years, 12 month(s) ago.
This question has been viewed 175 times and has 1 answers.

1 User is following this question

Israr Ahmad

BECOME A GUIDE

Share your knowledge and help people by answering questions.