Month: April 2013

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

CSS Technology

CSS3 modules list and definitions

In CSS3, W3C has modified the specification: several separate modules instead of a single one; each of these modules is dedicated to a specific aspect of CSS. Such approach has the advantage of helping companies that build internet browsers to implement one module at time without having to rewrite the […]