Unit-V: Image Manipulations, Audio and Video & Introduction to JavaScript
Unit-V: Image Manipulations, Audio and Video & Introduction to JavaScript I. Image Manipulations, Audio and Video This section focuses on integrating and controlling various media types within web pages, enhancing both aesthetics and functionality. A. Image Positioning and Display 1. Position an Image: CSS position property: · static (default): Renders elements in normal document flow. · relative : Positions an element relative to its normal position. Use top , bottom , left , right for offset. Doesn't affect other elements' positions. · absolute : Positions an element relative to its nearest positioned ancestor (not static). Removed from normal flow. · fixed : Positions an element relative to the viewport . Stays in place ev...