What is the difference between display:block and display:inline
|
|
Block elements will typically stack vertically whereas inline elements will line up horizontally. Two Divs will stack on top of each other, but if you set them to display:inline, they will be next to each other horizontally. Vise-versa with Span tags. |
||
|
|
|
|
display: block display: inline display:block Item 1 Item 2 Item 3 display:inline Item 1 Item 2 Item 3 |
||
|
|
|
|
display: block means that the element is displayed as a block, as paragraphs and headers have always been. A block has some whitespace above and below it and tolerates no HTML elements next to it, except when ordered otherwise (by adding a float declaration to another element, for instance). display: inline means that the element is displayed inline, inside the current block on the same line. Only when it's between two blocks does the element form an 'anonymous block', that however has the smallest possible width. |
||
|
|
|
|
yes, display:block makes the element behave like a block eg: display:inline make and element layout inline. these can be applied to elements that default to the opposite display type. Possible Values
|
||
|
|
|
|
There are two main types of drawing context in CSS that can be assigned to elements. One, By default, a block takes up all horizontal space, so a series of blocks will be displayed one beneath the other, stacked vertically. As inline elements flow into lines, they are rendered horizontally, as one word after the other. In general, you use block to lay out a page, while inline is reserved for textual content that you find within chunks of text, for instance, links. There are also other types of drawing context, for instance, More detail is available in the CSS 2.1 specification. |
||
|
|
|
|
It's important to note that inline elements cannot be assigned their own width, height, or vertical whitespace (margin/padding top/bottom). If you are trying to make block elements behave like inline elements (where they stack next to each other), you should be using |
||
|
|
|
|
Block uses the full width available, with a new line before and after. Inline uses only the width it needs without forcing new lines. |
||
|
|
|
|
An HTML document is considered a flow, think of a stack of HTML elements piled up to the top. A block is defined in the flow as a box (by default as large as the page) and is pushed as much as possible to the top without overlapping another block. Examples: div, p, table. An inline element does not define a box (that's why you cannot set its width and height), it will be appended to other inline elements in the current block. Examples: span, code, a. |
||
|
|
