views:

134

answers:

1

Safari on the iPhone renders my {position: relative; top: 80px;} div 1px too low (all other browsers work fine) - is there any way to fix this via conditional css?

+1  A: 

I would begin by this Comprehensive List of Browser-Specific CSS Hacks (and comprehensive it is!)

/* iPhone / mobile webkit */
@media screen and (max-device-width: 480px) {
 #veintiseis { color: red  }
}
Felipe Alsacreations