Click to See Complete Forum and Search --> : Replaced Elements


Rick Bull
12-02-2002, 09:36 AM
Can someone give me list of replaced elements please? I'm thinking something like <applet>, <button>, <img>, <input>, <object> & <select>

Charles
12-02-2002, 09:54 AM
I'm not sure what you mean by "replaced elements".

Robert Wellock
12-02-2002, 11:56 AM
How I understand it replaced elements are just that, for example a image file will replace the code: <img src="" alt="" /> I think you've got most of them.

An element for which the CSS formatter knows only the intrinsic dimensions. In HTML, IMG, INPUT, TEXTAREA, SELECT, and OBJECT elements can be examples of replaced elements. For example, the content of the IMG element is often replaced by the image that the "src" attribute designates. CSS does not define how the intrinsic dimensions are found

Rick Bull
12-02-2002, 01:12 PM
Thanks for the quote Rob, I thought it was in a spec, but I was looking in the HTML 4.01, not the CSS one. I was wondering whether <br /> and <hr /> are also replaced elements. I don't think they are.

Stefan
12-02-2002, 05:02 PM
Originally posted by Rick Bull
I was wondering whether <br /> and <hr /> are also replaced elements. I don't think they are. [/B]

Hmm, I would think that they are actually.
<hr> certainly is replaced by a line and <br> could be considered to be replaced by a row break char I guess.

Rick Bull
12-03-2002, 04:51 AM
Ah OK. I'm surprised it's not in the HTML 4.01 spec actually (unless it is and I'm missing something ;))

Stefan
12-03-2002, 05:50 AM
Yepp, it's a bit weird.

Even more weird is that I just bumped into this link without even looking for it
http://archivist.incutio.com/css-discuss/?id=3464


Eric Meyer
The <br> element has long been a source of
mystery. What exactly is it? Does it generate an element box, or is
it simply replaced by a linefeed entity? Does it create a line box?
Nobody really knows (although plenty of people have offered their own
interpretations).

Rick Bull
12-03-2002, 01:34 PM
:D Maybe I should write the the W3C and ask for some clarification :p