Internet, Networking, & Security Web Development What is Normal Flow in Web Design? by Jennifer Kyrnin Freelance Contributor Jennifer Kyrnin is a professional web developer who assists others in learning web design, HTML, CSS, and XML. our editorial process LinkedIn Jennifer Kyrnin Updated on February 19, 2020 Tweet Share Email Bill Oxford/Getty Images Web Development Web Design CSS & HTML SQL Normal flow is the way that elements are displayed in a web page in most circumstances. All elements in HTML are inside boxes which are either inline boxes or block boxes. Laying Out Block Boxes In normal flow, block boxes are positioned on a page one after the other (in the order they're written in the HTML). They start in the upper left of the containing box and stack from top to bottom. The distance between each box is defined by the margins with top and bottom margins collapsing into one another. For example, you might have the following HTML: This is the first div. It's 200 pixels wide with a 5px margin around it.This is a wider div. Each DIVis a block element, so it will be placed below the previous block element. Each left outer edge will touch the left edge of the containing block.Laying Out Inline Boxes Inline boxes are laid out on the page horizontally, one after the other beginning at the top of the container element. When there isn't enough space to fit all the elements of the inline box on one line, they wrap to the next line and stack vertically from there. For example, in the following HTML: This text is bold and this text is italics. And this is plain text. The paragraph is a block element, but there are 5 inline elements: "This text is ""bold"" and this text is ""italics"". And this is plain text." So normal flow is how these block and inline elements will display on the web page without any intervention by the web designer. If you want to affect where an element is on a page you can use CSS positioning or CSS floats. Was this page helpful? Thanks for letting us know! Get the Latest Tech News Delivered Every Day Email Address Sign up There was an error. Please try again. You're in! Thanks for signing up. There was an error. Please try again. Thank you for signing up. Tell us why! Other Not enough details Hard to understand Submit