How Do You Do Absolute Positioning With CSS?
• Add a positioning property and value to an element’s style on an HTML page, or to any class or ID in a CSS style sheet. This is written as position: absolute; • Determine a reference point. This may be from the top , bottom , left , or right side of the screen. For example, to position an element along the right side of the screen, use the right property. • Assign a value to your reference point. For example, to position an element 20 pixels from the right side of the screen, add right: 20px; to an element’s style or to a class or ID in a CSS style sheet.