Posts by brunomarks7 • 29 points
4 posts
-
-1
votes3
answers1666
viewsA: How to view a dropdown menu of a button inside a div with overflow: Hidden?
Do you really need to set to Hidden? Have you tried resetting the property? .scroll{ overflow: inherit; } Update of your example…
-
3
votes6
answers3343
viewsA: Methods to test websites in different browsers?
I made a list here with several that I use and recommend: Browser Stack Browserling To debug in different Vices and test responsive websites: Edge Inspect Ghostlab Remote Preview Opera Mobile…
-
0
votes6
answers19014
viewsA: I want to align my menu to the center
Take a look if this way suits you, I usually do like this: http://codepen.io/anon/pen/npsHv #menu{ max-width: 960px; background: gray; margin: 0 auto; text-align: center; padding: 15px 10px;…
-
0
votes3
answers8251
viewsA: Using jQuery Validation Engine and CNPJ validation
Here is a good explanation about CNPJ validation, you can perform it both at the front and backend. http://www.macoratti.net/alg_cnpj.htm…