Tag: css tags

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