CSS ARTICLE

History of CSS

Hakon Wium Lie image
Håkon Wium Lie

CSS (Cascading Style Sheets) was first proposed by Håkon Wium Lie on October 10, 1994 while working with Tim Berners-Lee at CERN and the rest is history. CSS was not the only styling language in development at the time,but the veryelement of cascading and developing sequence is what set it apart from the rest

CSS Introduction

What is CSS?

CSS Variables

Example

        
        body{  background-color: #1e90ff;}

         h2 { border-bottom: 2px solid #1e90ff; }

         .container {
          color: #1e90ff;
          background-color: #ffffff;
          padding: 15px;
          }

          button {
          background-color: #ffffff;
          color: #1e90ff;
          border: 1px solid #1e90ff;
          padding: 5px;
         }
        
      

CSS Syntax

        
          p {
          color: red;
          text-align: center;
          }