0
please anyone
div { width: 100px; padding: 10px; margin: 5px; } What will be the total width of the following div?
1 Answer
+ 5
If there are no inherited borders, then 130px because margin and padding will apply on both sides.
5 + 10 + 100 + 10 + 5
But technically there is no such attribute as "total width" so I just assume you mean how much space will be occupied by this div. :)