Posts

Showing posts with the label Cascading Style Sheets

Let us Learn CSS3 Step By Step

Image
Cascading Style Sheets(CSS) CSS  stands for  C ascading  S tyle  S heets CSS describes  how HTML elements are to be displayed on screen, paper, or in other media CSS  saves a lot of work . It can control the layout of multiple web pages all at once External stylesheets are stored in  CSS files Why We Use CSS? CSS is used to define styles for your web pages, including the design, layout and variations in display for different devices and screen sizes. An example To define a style for body ,h1, and p tag body  {   background-color :  lightblue ; } h1  {   color :  white ;   text-align :  center ; } p  {   font-family :  verdana ;   font-size :  20px ; } CSS Solved a Big Problem HTML was NEVER intended to contain tags for formatting a web page! HTML was created to  describe the content  of a web page, like...