Search Results for "applied"

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 […]