Move text when mouse over in Css3
Move text when mouse over

<style type="text/css">  
  .mbt-nudge
  {
   -moz-transition: all 0.4s ease-out 0s;
   -webkit-transition: all 0.4s ease-out 0s;
  }
  .mbt-nudge:hover
  {
   margin-left: 55px;
   padding-left: 5px;
  }
  </style>
Comments
Post a Comment