Tag: css

CSS Technology Web design

Types of HTML layouts

One of the most important aspects in designing HTML pages concerns the width and height of the website and how the elements fit into the layout. Over the years, web designers were looking to have a balance between the benefits and the pitfalls of addressing one or another option or […]

CSS Technology

The Box Model in CSS3

A powerful feature of CSS3 is it allows the designer to position elements in page. Such method is called CSS-P or Positioning. As you know, the web browser phisically organizes the page according to the HTML code. A Box Model represents the sum of rules leading to the final aspect […]

CSS Technology

How CSS inheritance affects the HTML tags output

Inheritance is the basement of the CSS structures. Elements’ properties can actually inherit the values from the dominant HTML tags unless you specify a different value for a child element (i.e. <h1 style=”font-family:Arial, Helvetica, sans-serif; font-size:13px; font-weight:normal;”>….</h1> has a style defined inside the h1 tag, a so-called child element). If […]