Centralizar elementos


/ Published in: jQuery
Save to your folder(s)



Copy this code and paste it in your HTML
  1. <script type="text/javascript">
  2. $(document).ready(function() {
  3. $('ul.paginacao').css({left:'50%',margin:'-'+($('ul.paginacao').height() / 2)+'px 0 0 -'+($('ul.paginacao').width() / 2)+'px'});
  4. });
  5. </script>
  6.  
  7. <style>
  8. ul.paginacao{
  9. position:relative;
  10. }
  11. </style>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.