Apple iPhone/iPad IOS Simulate :hover Demo

« Back To Tutorial

« Back To Tutorial

Tap once for :hover event - Tap a second time to follow link

:hover ME!IOS:hover

/* iPad & iPhone simulate :hover - If you find your IOS device won't (or correctly) hover add the follow code */
@media screen and (min-device-width:320px) and (max-device-width:768px) {
	b {
	display:none;
	}
	a:hover b {
	display:block;
	} 
}