Layout In CSS

Line Spacing

CSS allows you to control the widthand height of an element, as well as increase the space between two lines, with the use of dimension properties.   The following CSS code example shows how to increase the space between lines.   <html> <head> <style type=”text/css”> p { line-height: 1cm; } p.bigSpace { line-height: 1.5cm; } …

Line Spacing Read More »

CSS Positioning

The CSS positioning properties allow you to specify the position of an element (element’s left, right, top, and bottom position). It also allows you to set the shape of an element, place an element behind another, and to specify what should happen when an element’s content is too big to fit in a specified area. …

CSS Positioning Read More »

CSS Layers

CSS allows you to position HTML elements on top of one another, giving control over which item will appear on top.CSS layers are more flexible and more convenient than other layout management schemas. Layers can be used for effective layout management. In the beginning, you may find it difficult , but as you get more …

CSS Layers Read More »