Question:

what are positioned elements?

by Guest4994  |  12 years, 8 month(s) ago

0 LIKES UnLike

what are positioned elements?

 Tags: elements, positioned

   Report

1 ANSWERS

  1. Guest6415
    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).

Sign In or Sign Up now to answser this question!

Question Stats

Latest activity: 15 years, 2 month(s) ago.
This question has 1 answers.

BECOME A GUIDE

Share your knowledge and help people by answering questions.
Unanswered Questions