Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where is the default size of a div element defined or calculated?

Tags:

html

css

I wonder how a browser calculates the initial height and width values for div elements without a given size. Given this div for example:

<div>
  TEST
</div>

My browser (Chrome) calculates the size of this div to 1255 x 18, with a windowsize of 1271 x 284. It seems like divs default to the height of a line and the inner width of the window minus some. But I would like to know more about it.

I couldn't find anything here: https://html.spec.whatwg.org/multipage/semantics.html#the-div-element

Where can I find this kind of information?

like image 655
Flip Avatar asked Jan 26 '16 09:01

Flip


1 Answers

div tags are block level elements. All block level elements inherit the width of their parent element by default.

In your example, the div is inheriting the width of the parent body tag, taking into account any margin or padding on the body element.

MDN is usually a great source of information for this sort of thing - see https://developer.mozilla.org/en/docs/Web/HTML/Block-level_elements

like image 106
Josh Harrison Avatar answered Sep 25 '22 08:09

Josh Harrison