beermantm Posted February 3, 2014 Report Posted February 3, 2014 I used the checkbox hack and the new flex box properties to make a pure css flyout menu. It validates but not sure as to what the future might be for this trick. I'd rather not turn to javascript so for now I'm thinking about deploying this menu. Take a look at demo at chicagophil.com. So far I know Opera browser doesn't work but firefox, safari, and chrome all seem a go. What are your thoughts? Quote
kralcx Posted February 8, 2014 Report Posted February 8, 2014 It looks fine to me; I'm using Opera 12.16 and it works fine. CSS3 user-select doesn't work in Opera mini however. You may want to add some prefixr to your code however to account for older browsers. e.g. label { cursor: pointer; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; height: 30px; position: absolute; width: 40px; top: 0px; } #content { display: block; clear: both; width: 100%; background-color: lightblue; padding: 8px; min-width: 90%; -webkit-box-sizing: box-border; -moz-box-sizing: box-border; -ms-box-sizing: box-border; box-sizing: box-border; } Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.