Namya Shahbigsmoke.hashnode.dev·Dec 23, 2023Basics CSS Questions Part 1What does CSS stand for? Cascading Style Sheets. What is the purpose of CSS? It's used to style the layout and appearance of web pages. How do you link an external CSS file to an HTML document? Using the <link> tag within the HTML <head> secti...css purpose
Emore Ogheneyoma Lawrencedevyoma.hashnode.dev·Jul 29, 2023CSS Margin and PaddingThe CSS Margin and Padding are undoubtedly one of the most used CSS property-value pairs in the CSS world. Understanding how they work will be extremely useful when coding CSS. The CSS Margin and Padding allow us as Frontend developers to give space ...11 likes·82 readsCss margin property
Shefalidevshefali.hashnode.dev·Jul 26, 2023Mastering CSS Margins, Padding, and the Box ModelIntroduction In web development, Cascading Style Sheets(CSS), is used to manage the layout and presentation of web pages. Within its many features, margin, padding and the box model are important ones, which affect the visual appearance and spacing o...Web Development
Andy Tangandytang.hashnode.dev·Jul 7, 2023Creating Visual Hierarchy with CSS Margin and PaddingCreating a visually appealing and well-structured website involves utilizing various design techniques, including CSS margin and padding. These CSS properties not only control spacing but also play a crucial role in establishing visual hierarchy. In ...Margin
Mayank Sahumayanksahu.hashnode.dev·Feb 21, 2023Box Model In CSSEverything on a website is a box Two Types of Box:- Block => Every new block elements will start on a new line. We can apply height and width property. Example :- <div>, <p>, <h1>-<h6> etc. Inline => New elements will not break into a new line. Hei...2 likes·72 readsCSS3
Subhojit Dasemmet.hashnode.dev·Feb 2, 2023Margin padding in CSSQ1. What are margin and padding and when do we use them? Ans:-Padding and margin are two CSS (Cascading Style Sheets) properties used to control the space around an HTML element. Padding is the space between an element's content and its border. It i...Css margin property
Rudraprasad Mohapatrarudraprasadmohapatra.hashnode.dev·Jan 29, 2023What are margin and padding when do you use them?What is display property and explain ? Explain min-height,min-width,max-height and max-width in CSS?What are margin and padding when do you use them? Ans:- Margin: Outside space surrounding an element. **Padding:** Inner space surrounding an element. We use margin and padding for maintaining space between the elements, better readability o...42 readsMargin
Ashish Jhaashishjha14.hashnode.dev·Jan 20, 2023Brief Intro to CSS Box ModelWhat is a Box Model in CSS? The CSS Box model is a box that wraps around every HTML element. The term "Box Model" is used when talking about design and Layout. It consists of few things: Margin, Padding, Borders, and the Actual content. All the thin...CSS
F Mohamedprogram12.hashnode.dev·Jan 9, 2023Box modelBox model All elements inside HTML are wrapped inside a box. This is known as the Box model. The box model is made up of 4 components: Content Padding Border Margin The blue section is where the content is placed. The green is the padding, the...35 readsCSS Box Model
Birinchi Baniaanxitcoder.hashnode.dev·Dec 1, 2022Day 1 challengeI have been studying html and css since last few months. Today was the first day I thought of doing something else. And so I choosed the first challenge from the "Web Development Course" by Apna College. Now I wrote the html structure. First there w...Css margin property