Mouad Oumousoumousmouad.hashnode.dev·10 minutes agoIntroduction au CSS : Le Langage de Mise en Forme du WebLe CSS (Cascading Style Sheets) est un langage utilisé pour gérer l'apparence et la mise en forme du contenu d’une page web. Il permet de styliser le texte, les images, les tableaux, les formulaires, et bien plus encore. CSS joue également un rôle cl...CSS
maxcodigopuesto.hashnode.dev·2 hours ago¡Mi último proyecto de maquetación web está listo! 🚀https://codepen.io/hectorweb/pen/RNwraYX ¿Qué logré? 1. Flexbox para el Layout GlobalEn el contenedor principal (.container): Se usa Flexbox para organizar el layout global de la página, con una dirección de columna (flex-direction: column) para qu...frontend
sujay kumarsujaynitrr.hashnode.dev·Feb 14, 2025Block and shadowing in javascriptBlock Referring to is grouping multiple statements together inside a block (curly braces {}) in JavaScript. This is often done when JavaScript expects a single statement but you want to execute multiple statements in that context Example: if (true) {...JavaScript
리브레codelibre.hashnode.dev·Feb 13, 2025예? 공용 컴포넌트를 만든다고요?정들다 만 하테나 블로그를 떠나 결국 미루고 미루던 해시노드로 정착을 했는데, 블로그를 옮기고 나서 첫 글을 뭐로 쓸까? 라고 소재에 대한 고민을 하다보니 어언 2월… 월 1회 글쓰기 해보자고 생각했던 만큼, 뭘 쓸지 고민했던 차에 현재 계약직으로 근무하면서 자주 만들고 있는 공용 컴포넌트에 관한 생각들을 좀 풀고 싶어서 이 블로그의 첫 글로 그 내용을 다뤄보기로 했다. 공용 컴포넌트라는 환상의 포켓몬 프론트엔드 개발자분들께 공용 컴포넌트에 대...#common_component
maxcodigopuesto.hashnode.dev·Feb 12, 2025cree caja de comentariosOsea costo llegar a este diseño final, mi mirada de diseño ux/ui influjo muchome propuse que sea moderno, tenga colores degradados y use iconos de js cnd me ancanta como quedo, bastante modernofrontend
Oni Ebunoluwa Mercyebuntoday.hashnode.dev·Feb 11, 2025How To Use Scroll Carousel ReactBack story: I wrote this article back in 2023 but hesitated for so long to share it. But here it is—my supposed first tech article! Introduction Hi everyone! This is my first tech article, and I wrote it with you in mind because it took me several da...scroll-carousel
Sylvester Daswww.minifyn.com·Feb 10, 2025Taming the CSS Cascade with Layers: A Beginner's GuideIntroduction Styling a website can sometimes feel like juggling. You change one thing, and something completely unexpected breaks elsewhere. This often happens because of the CSS cascade – the set of rules that determines which styles win when multi...technology
sujay kumarsujaynitrr.hashnode.dev·Feb 9, 2025React 19 useTransition() hookIn React 18 When a user wants to change their name, the process typically involves typing the new name into an input box and then clicking the submit button (which triggers an API call). After submitting, we receive a response. In this case, we need ...React
Nwakaego-Egoego.hashnode.dev·Feb 7, 2025Tackling My Hydration Error and What I LearnedSo far, the project I am working on has been quite an adventure. Last week, I ran into a Node version error, and I wrote about it and broke it down step by step in the simplest way possible. Before you could even say "Jack Robinson," boom, another er...hydration
sujay kumarsujaynitrr.hashnode.dev·Feb 7, 2025promise in javascriptBefore promises, we handled asynchronous operations using callback functions, but callbacks are not a good way to handle asynchronous operations. Callbacks: Callback functions are passed as arguments to asynchronous functions(fetchData) and are exec...JavaScript