Making a website consistently looking with the use of CSS
Even so HTML is good for creating structure of the website it is a good idea to use CSS to decorate elements in HTML page a specific way. CSS stands for cascading style sheets. It has a name cascading because properties of the parent element will propagate to its children.
For example if a specific font is specified at the body element. Body element is being higher in the hierarchy. This font type will be applied to the children of the body element, this is good for consistency design of HTML elements.
It is possible to override the design characteristics for specific elements.
Comments
Post a Comment