Web Development CS JS Python JavaScript Hacking ReactJs Python django Flask CSS Frontend Backend Full Stack Java Node Pdf Books
3.99K subscribers
878 photos
11 videos
995 files
354 links
One place for the latest in JavaScript, Python, Django, React, and more. Get top-notch tutorials, tips, and downloadable resources. Join us to elevate your tech skills!
Download Telegram
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
Master React.

Learn these hooks:

📌 useState()
⏲️ useEffect()
🌐 useContext()
🔄 useReducer()
🏃‍♂️ useCallback()
🧠 useMemo()
📚 useRef()
🎨 useLayoutEffect()
Understand possible values for CSS transform property with this cheat sheet 🚀
👍1
💠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 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 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.
💠Margin Shorthand Property

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 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.