Question from the jQuery test

jQuery positioning: innerHeight and innerWidth include respectively the top and bottom padding, and the left and right padding of the considered element, while the outerHeight and outerWidth properties include the top and bottom margin respectively, and the left and right margin of the considered element.

Archived

Regarding positioning in jQuery, which of these statements are true?

Author: InconnuStatus: Archived(New question!)Question passed 216 times
-1
Community Evaluations
developer avatar
Incorrect answer
Anas
25/11/2023
En rĂ©alitĂ© les 3 rĂ©ponses sont fausses. 1 - innerHeight et innerWidth mesurent la hauteur et la largeur de l’élĂ©ment, avec les paddings . outerHeight et outerWidth incluent les bordures et, si l’argument true est fourni, elles incluent aussi les marges. 2 - offset est utilisĂ©e pour obtenir les coordonnĂ©es d’un Ă©lĂ©ment par rapport au document entier, ce qui est utile pour comprendre oĂč un Ă©lĂ©ment se trouve dans notre code. 3 - position est utilisĂ©e pour obtenir les coordonnĂ©es d’un Ă©lĂ©ment par rapport Ă  son parent positionnĂ© le plus proche, ce qui est souvent utilisĂ© pour le positionnement relatif Ă  l’intĂ©rieur d’un autre Ă©lĂ©ment.