views:

48

answers:

1

in Chrome when i set z-index to 2147483647 it changes to 1e+06.. what is the maximum possible value for chrome?

+1  A: 

.css('z-index', '99999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999').css('z-index')

becomes 1e+308. If you add another digit after it becomes "inf".

meder