CSS-Notes
CSS-Notes
---------------
1. inline -- fast
2. external css --
3. embedded css -- head body
Selectors in css
-------------------
Primary Selector
-------------------
Syntax
Selector{
attribute:value;
}
ID Selector :
--------------
#id{
color :red;
}
class Selector
---------------
.class Name{
color:red;
}
Relational Selector
-------------------
parent child : child Selector, it can access all child elements under specific
parent from
any level
ui li{
padding – defines the space between the content and the element's border (inside
spacing).
margin – sets the space outside the element's border (outside spacing).
display – specifies how an element is displayed (block, inline, flex, grid, etc.).