Trying to create an animated circle application with text inside.
The issue arises when attempting to place the text within the circle, as it ends up inheriting the circular motion which is not desired. The goal is to have the text remain fixed without any rotation effect. Even after using transform: none !important
, the problem persists.
Below is the code being used:
<div id="container">
<div id="main">
<div id="outer-circle">
<div id="inner-circle">
<div id="center-circle">
<div id="content"><p>text</p></div>
</div>
</div>
</div>
</div>
CSS:
#content p{
padding-left:0;
-o-transform: none !important;
-moz-transform: none !important;
-ms-transform: none !important;
-webkit-transform: none !important;
transform: none !important;
-webkit-animation: none !important;
-moz-animation: none !important;
-o-animation: none !important;
-ms-animation: none !important;
animation: none !important;
}