Surya Durgeshsuryatechie.hashnode.dev·Sep 26, 2024The Magic of the Box Model: Understanding Layout in CSSThe CSS box model is the foundation of layout and design in web development. Every element on a webpage is represented as a rectangular box, and understanding how this model works is essential for controlling spacing, sizing, and overall layout. Whet...Discussborders
Akshima Sharmakeycomputereducation.hashnode.dev·Jun 11, 2024CSS Margin and PaddingIn CSS, margin and padding are properties used to create space around elements. However, they serve different purposes and affect elements differently. Margin Margin is the space outside the border of an element. It creates space between the element ...DiscussCSS 3HTML5
Meet Dabhimeetdabhi.hashnode.dev·May 20, 2024Custom Padding Widgets using Flutter for Clearly Designed and Useful Layouts for Big ProjectsIn this blog post, we explore how to create a versatile Custom Padding widget in Flutter, designed to simplify and streamline your UI design process. By providing a reusable padding component that can adapt to various layout needs, you can ensure cle...Discuss·1 like·72 readsFlutter
Jeet Bhalujeetbhalu.hashnode.dev·Mar 13, 2024Dart String Manipulations: Trimming & PaddingTrimming: You can remove in String Whitespace in to use function trim() , Right side to remove String Whitespace in to use function trimRight() , Left Side to remove String white space in to use function trimLeft() . void main(){ String str = "...DiscussDart String Manipulations: Trimming & Padding
Hoàng Việttechtalkcentral.hashnode.dev·Jun 30, 2023The Importance of Using CSS Margin and Padding: Enhancing Web Design and LayoutCSS (Cascading Style Sheets) is a fundamental language used for web design, and within CSS, margin and padding play critical roles in shaping the visual appearance and layout of a webpage. This article delves into the significance of utilizing CSS ma...Discuss·30 readsCss margin property
Himangshu Kalitahimangshukalita.hashnode.dev·Feb 11, 2023Table and its PropertiesHTML Table: Web developers can organize information like text, images, links, and other data into rows and columns of cells using HTML tables. The <table> tag is used to generate HTML tables. Table rows are created using the <tr> tag, while data c...Discuss·46 readstable
Zuber Ustadzuberustad.hashnode.dev·Jan 3, 2023CSS Box Model (Padding, Margin, Border)What is CSS BOX MODEL? The browser's rendering engine represents each element as a rectangular box according to the standard CSS basic box model.CSS box model contains the size, position, and properties (color, background, border size, etc.) of thes...Discuss·75 readsCSS
Eirik Madlandsynack.hashnode.dev·Dec 21, 2022CSS Box Model TutorialThe Box model is a fundamental concept in CSS that defines the layout and dimensions of an element on a web page. It consists of four main components: Margins: The space around the element, outside of its border. This space can be used to separate t...Discuss·37 readsCSS
Nicanor Talks Webblog.nicanor.me·Jun 28, 2022Web Elements Padding vs marginPadding and Margin are sometimes confusing and you might use the wrong one for the wrong purpose. Both have a different impact according to how you use them. For me, I always have a secret on how to grasp this with a real-life scenario. Let's say y...Discuss·61 readsWeb Development
Saptarshi Deydarkmortal.hashnode.dev·Dec 31, 2021How structure-padding in C/C++ actually worksIn case you're not familiar with structure padding or inheritance, I'd suggest you go through these videos first as they will come in handy https://youtu.be/aROgtACPjjg https://youtu.be/X8nYM8wdNRE Why use Structure Padding in the first place? 🤷...Discuss·2 likes·332 readsC++