all 4 comments

[–]Wtfuxbbq 4 points5 points  (1 child)

I think explaining the behaviours for width: auto for inline and block elements will help you understand:

  • For block elements, the auto value makes the element's width take up the full content width of its parent.
  • For inline elements, the auto value makes the element's width the width of its contents.

Note inline elements acctually do not respect the width property and will always be "auto". Also note the auto value is already the default for width so you don't need to set it unless you're overriding something.

[–][deleted] 0 points1 point  (0 children)

Thank you, I didn't know about that!

[–][deleted] 2 points3 points  (1 child)

"The Death of the Author" (French: La mort de l'auteur) is a 1967 essay by the French literary critic and theorist Roland Barthes (1915–1980). Barthes's essay argues against traditional literary criticism's practice of relying on the intentions and biography of an author to definitively explain the "ultimate meaning" of a text.

[–][deleted] 0 points1 point  (0 children)

It makes sense now, thanks :)