I am currently working on a small website and encountering some challenges with jQuery animation. My issue involves placing a single character text inside a circle and wanting it to grow when the user hovers over it, while keeping the inner text in its original position. The circle should shrink back to its original size upon the mouse leaving the area. Although the growing/shrinking aspect is functioning properly, the problem lies with the inner text changing its position upon hover.
Below is the HTML code:
<body>
<div class="steps">
<div id="one" class="number">
<div id="num-text">
<p><strong>1</strong>
</p>
</div>
</div>
</div>
</body>
In this setup, 'steps' acts as a container and 'number' represents the circle. You can find a JSFiddle link for this question here: http://jsfiddle.net/Rockr90/hZSKA/
Thank you!
Edit: It seems that the flickering issue only occurs in Chrome. The example using CSS3 works fine on IE and Firefox, leading me to believe that it might be related to webkit?