Posts by cristofersousa • 171 points
4 posts
-
0
votes3
answers129
viewsA: How to share access between directives?
For you to pass values of diretivasFilhas you pass the property to the directive you want and it receives this value, example I am passing the property valor of Directive to the Directivab, because…
-
1
votes0
answers24
viewsQ: How to use the jquery-panelsnap() onSnapFinish(); event
I have a question in jquery-panelsnap plugin (http://guidobouman.github.io/jquery-panelsnap/) this is a plugin that works with session transition from scroll. It works very well, but instead of…
-
6
votes18
answers139957
viewsA: What is the best way to center an element vertically and horizontally?
Using CSS3: .conteudo-centro{ position: absolute; z-index: 99999999; left: 50%; top: 50%; transform: translate(-50%, -50%); } <section class="conteudo-centro"> <h1>Opa, estamos no centro…
-
10
votes1
answer2121
viewsQ: Hide default component [arrow] form select in IE
I got a problem here at IE. I am styling the select component of the form, hiding the arrow that comes by default from the browser to load an image in its place. In FF and Chrome was quiet, but in…