CSS Niye Joto Kotha
Resource Links
-- https://www.tutorialrepublic.com/css-reference/css3-properties.php
Ai site ta explore kore dekhte paren, just kichu color theory deya ache, apni nijer moto use korben, kon color er sathe kon color valo jabe setar idea nite paren,
ami art er jonno use kortam
https://coolors.co/palettes/trending
Introduction
CSS Text: text color, text alignment,text decoration,font size, font family, font-style
Meaning Cascading Style Sheet
CSS has 3 type those are
2)
3)
There are so many color code types
hexa
rgba color
3 CSS Selectors (basic): id, class, universal, tags, grouping, attribute, id vs class
CSS selectors are used to "find" (or select) the HTML elements you want to style.
We can divide CSS selectors into five categories:
- Simple selectors (select elements based on name, id, class)
- Combinator selectors (select elements based on a specific relationship between them)
- Pseudo-class selectors (select elements based on a certain state)
- Pseudo-elements selectors (select and style a part of an element)
- Attribute selectors (select elements based on an attribute or attribute value)
The CSS element Selector
The element selector selects HTML elements based on the element name.
Example
Here, all <p> elements on the page will be center-aligned, with a red text color:
p {
text-align: center;
color: red;
}4 Mixed Selectors multiple classes, combined selectors, attribute, div, span
5 CSS Borders Border, border-radius, Margin, different ways to set margin
margin styling position work as clockwise top right bottom left
;"> Example for internal link </p>
6 CSS Box model Padding, border, content, height, width
7 CSS Display none, hidden, inline, block, inline-block, box-shadow
8 CSS Background color, image, repeat, position, size, relative image path
9 CSS Overview Module Summary and practice task
FLEXBOX FROGGY
Use justify-content again to help these frogs get to their lilypads. Remember that this CSS property aligns items horizontally and accepts the following values:
flex-start: Items align to the left side of the container.flex-end: Items align to the right side of the container.center: Items align at the center of the container.space-between: Items display with equal spacing between them.space-around: Items display with equal spacing around them.
If the margin property has two values:
- margin: 25px 50px;
- top and bottom margins are 25px
- right and left margins are 50px

Comments
Post a Comment