Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Introduce CSS

Introduce CSS

Avatar for Indra Nugraha

Indra Nugraha

April 14, 2016
Tweet

More Decks by Indra Nugraha

Other Decks in Technology

Transcript

  1. What is CSS ? CSS (Cascading Style Sheet) is language

    used to create documents on the web. CSS is meant for the presentation of a web page's content, or rateher, how a web page is meant to look. We can use CSS to modify any HTML tag, so as to deliver a branded experience in graphical browsers. Users accessing the pages with more primitive devices will still be able to understand and use the site. The is called graceful degradation.
  2. The Style Rule CSS allows the author to specify formatting

    & presentation of HTML elements CSS Styles Rules.
  3. Inheritance of Style The h2 is parent element of the

    em. Therefore, if we add the style color: blue; to the h1, then the em will inherit that style and also be color: blue;