In CSS, a replaced element is an element whose representation is outside the scope of CSS. In other words, these are external objects whose representation is independent of the CSS formatting model.
Typical replaced elements are:
Some elements are treated as replaced elements only in specific cases:
Some form controls can also be replaced elements. The HTML spec says that an <input>
element can be replaced, and <input>
elements of the image type must always be replaced.
Objects inserted using the CSS content
property are anonymous replaced elements. They are "anonymous" because they don't exist in the HTML markup.
CSS handles replaced elements specifically in some cases, like when calculating margins and some auto
values.
Note that some replaced elements, but not all, have intrinsic dimensions or a defined baseline, which is used by some CSS properties, such as vertical-align
.
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/CSS/Replaced_element