This security practices may vary, not all websites implement the same measures.
some systems use "pepper", which is a secret value not stored in the database in the same database. The pepper is applied before hashing and provides an extra layer of security.
@javascript_resources
#cybersecurity
some systems use "pepper", which is a secret value not stored in the database in the same database. The pepper is applied before hashing and provides an extra layer of security.
@javascript_resources
#cybersecurity
🔨 Semantic Structure Example:
Master React.
Learn these hooks:
📌 useState()
⏲️ useEffect()
🌐 useContext()
🔄 useReducer()
🏃♂️ useCallback()
🧠 useMemo()
📚 useRef()
🎨 useLayoutEffect()
Learn these hooks:
📌 useState()
⏲️ useEffect()
🌐 useContext()
🔄 useReducer()
🏃♂️ useCallback()
🧠 useMemo()
📚 useRef()
🎨 useLayoutEffect()
Useful site to check
Open Peeps:
Hand-drawn illustration library for free use.
→ openpeeps.com
#techtip
@javascript_resources
Open Peeps:
Hand-drawn illustration library for free use.
→ openpeeps.com
#techtip
@javascript_resources
Understand possible values for CSS transform property with this cheat sheet 🚀
👍1
CSS Margin and Padding🔥🤓
💠Margin
Margin is used for controlling spacing around elements in a web page.
This creates space between an element’s border and its neighbouring elements.
Margin is used for controlling spacing around elements in a web page.
This creates space between an element’s border and its neighbouring elements.
💠Margin Properties
▪️margin-top: sets the margin on the top side.
▪️margin-bottom: sets the margin on the bottom side.
▪️margin-left: sets the margin on the left side.
▪️margin-right: sets the margin on the right side.
▪️margin: sets the margin for all four sides.
▪️margin-top: sets the margin on the top side.
▪️margin-bottom: sets the margin on the bottom side.
▪️margin-left: sets the margin on the left side.
▪️margin-right: sets the margin on the right side.
▪️margin: sets the margin for all four sides.
💠Margin Values
▪️auto - the browser calculates the margin
▪️length - specifies a margin in px, pt, cm, etc.
▪️% - specifies a margin in % of the width of the container
▪️inherit - makes the margin inherit from the parent element.
⚡️Negative values are allowed.
▪️auto - the browser calculates the margin
▪️length - specifies a margin in px, pt, cm, etc.
▪️% - specifies a margin in % of the width of the container
▪️inherit - makes the margin inherit from the parent element.
⚡️Negative values are allowed.
💠Margin Shorthand Property
You can use the margin shorthand property to set all four margin values at once.
You can use the margin shorthand property to set all four margin values at once.
💠Padding
Padding is used to create space between an element’s content and its border.
It affects the space inside the element.
Padding is used to create space between an element’s content and its border.
It affects the space inside the element.
💠Padding Properties
▪️padding-top: sets the padding on the top side.
▪️padding-bottom: sets the padding on the bottom side.
▪️padding-left: sets the padding on the left side.
▪️padding-right: sets the padding on the right side.
▪️padding: sets the padding for all four sides.
▪️padding-top: sets the padding on the top side.
▪️padding-bottom: sets the padding on the bottom side.
▪️padding-left: sets the padding on the left side.
▪️padding-right: sets the padding on the right side.
▪️padding: sets the padding for all four sides.