introduction of CSS
overview of CSS language.
CSS:- cascading style sheets, is a fundamentals technology used for styling & formating web pages. It allows web developers to control the layout design & appearance of HTML elements.
In css some properties/using methods
1.selectors :-
- selectors are used to target HTML elements that you want to style.
- examples of selectors include element selectors ('p', 'h1' , 'div'), class selectors('.my-class') , ID selectors('#my-id'), attribute selectors('[type="text"]') and more.
2.properties :-
- CSS properties define the visual style or behaviour of the selected elements
- examples of properties include 'color' , 'font-size' , 'background-color' , 'margin' , 'padding' , 'border' , 'display' , and many more
3.values :-
- values are assigned to CSS properties to define the specific settings for those properties.
history of CSS..
in 1994 Hakon wium lie & bert bos proposed the concept of css as a separate style language for the web. They published the first official css specification css in december 1996 css allowed web designers to separate the presentation of web pages from their underlying structre.

Comments
Post a Comment