FYGS \_°<fygs.hashnode.dev·Oct 22, 2024Master CSS: Beginner’s Introduction to Web Page StylingIntroduction to CSS Session Objectives Understand what CSS is and its importance in web development Learn how to link a CSS file to an HTML document Master basic CSS selectors Wat is CSS and why use it? CSS stands for Cascading Style Sheets. De...Web Development from beginner to advancedCSS3
Daniel Fernández Vegadanielfernandezvega.hashnode.dev·Oct 7, 2024CSS Best Practices for Modern Web DevelopmentWhen it comes to web development, mastering CSS (Cascading Style Sheets) is key to creating visually stunning, responsive, and maintainable websites. However, it’s not just about knowing the syntax—following best practices is essential to ensuring yo...CSS
Hongtech.mrleong.net·Sep 27, 2024Vertically Center Align Text In Screen Using Bootstrap 5<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Vertically Centered Text</title> <!-- Bootstrap 5 CSS --> <link href="https://cdn.jsdeliv...How-toCSS
Zainab JINARIbenizcode.hashnode.dev·Sep 26, 2024Understanding CSS Selectors: A Beginner's Guide (Part 2)Table of Contents: Introduction > Child Combinator ~ Subsequent sibling combinator + Next Sibling Combinator Conclusion Introduction: In part 2 of the series, we will take a break from learning other types of selectors and dive deep into how...CSS
Millan Figueroadisruptdev.hashnode.dev·Jun 26, 2024Let's Get into DOM ManipulationDOM (Document Object Model) manipulation is a cornerstone of modern web development. It allows developers to create dynamic, interactive websites by programmatically changing the content and structure of web pages. In this post, we'll delve into the ...JavaScript
AMINE ABAIDIcodewithamine.hashnode.dev·May 4, 2024Choosing Between Absolute and Relative CSS Units: A Comprehensive GuideWhat are absolute and relative values? Absolute Values: These are values that remain constant regardless of external factors. For example, setting the width of a paragraph to 16px means it will always stay at 16px and not change, irrespective of ot...11 likesCSS
Ogunuyo Ogheneruemu Biruemu.hashnode.dev·Oct 17, 2023Removing the Last borderBottomWidth in a React Native ListWhen developing a React Native application, you often need to display lists of items. Styling these lists is essential to create a visually appealing user interface. However, there are cases where you want to remove the last borderBottomWidth from th...React Native
Prahlad Inalablogs.prahladinala.in·Apr 28, 2023React Native 101: StyleSheetReact Native's StyleSheet is a built-in component that allows developers to manage styles for React Native components. The StyleSheet is similar to CSS in web development, but it is designed to be more efficient and optimized for mobile development. ...40 readsReact NativeReact
Techscribetech-scribe.hashnode.dev·Mar 31, 2023CSS Fundamentals: understanding Conflicting Declarations and Cascade.What's a conflicting declaration in CSS? When two or more CSS rules apply to the same element and define the same property with different values there's a conflicting declaration. Assume you've written two CSS rules for an element. The CSS rules ...29 readsCSS
Shrutika Dorugadecodewithshrut.hashnode.dev·Mar 4, 2023Stylesheet in React NativeHey guys, what's up? I hope you all are doing well. So let's move one step ahead and understand a bit about styling to make our Hello World app a little bit eye-catchy. In case you haven't developed the Hello World app yet then please check out my pr...10 likes·41 readsStyleSheet