Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

IE 11 developer tools does not show width of an element

IE 11 developer tools displays "auto" instead of actual width unlike previous editions. Is it possible to do this also in ie 11?

like image 800
Max Power Avatar asked Dec 09 '13 08:12

Max Power


1 Answers

  1. Right click on the element, and choose Inspect Element. You can also just open Dev Tools using F12.
  2. On the "Dom Explorer" Tab, in the sidebar, find the "Layout" tab (see screenshot).
  3. The "Layout" tool shows the dimensions of the element including width and height of the native element, the padding applied to it, the border, the margin, and the offset.

IE 11 Dev Tools, DOM Explorer, Layout View

like image 114
CazierTM Avatar answered Oct 18 '22 09:10

CazierTM