0
I solved the problem, it was a simple thing, the top column div, which encompassed the exit button of the game and the lives were closing in the wrong place, just at the end of everything.
0
0
I solved the problem, it was a simple thing, the top column div, which encompassed the exit button of the game and the lives were closing in the wrong place, just at the end of everything.
Browser other questions tagged css twitter-bootstrap bootstrap-3 osx mac
You are not signed in. Login or sign up in order to post.
I don’t know if it will, but I’ll give you a hint about @media and seeing prefix. It doesn’t write CSS the way it is, even though it seems right. Separate each Vendor prefix into a rule. type
@media only screen and (-webkit-min-device-pixel-ratio: 1.5) { }
and then another without seeing the prefix@media only screen and (min-device-pixel-ratio: 1.5) { }
– hugocsl
Both examples have the same screen resolution?
– Sam