5
I heard from a development professional that:
"All
div
is relative even without you defineposition:relative
"
That is correct?
5
I heard from a development professional that:
"All
div
is relative even without you defineposition:relative
"
That is correct?
11
Wrong, in HTML a position
by default (by default) is position: static;
Reference: W3C
3
The standard position is static
for any HTML element, if not explicitly specified
position: static;
2
No, because when you apply:
div{
top:100px;
left:200px;
}
to div
does not appear to change, whereas in:
div{
position:relative;
top:100px;
left:200px;
}
is noticeable.
Browser other questions tagged html css
You are not signed in. Login or sign up in order to post.
as well as by default?
– Kazzkiq
@When Kazzkiq does not define the
position
, the value assumed by browser isstatic
to adiv
.– Jorge B.
A yes, the value pattern. It is that the word "defect" is not widely used in Brazil to translate "default". I did not know that "defect" can also be used with the same meaning in Portuguese, interesting. :)
– Kazzkiq
@Jorgeb. would suggest editing for at least "default/default" or "default" instead, so comments could be deleted. I think it’s nice not to interfere in the cultural issue, but unfortunately, this word has a very different meaning in Brazil. (then I delete this comment here too)
– Bacco