I would like to make a timed border draw animation once my page is loaded. I basically want the border of the div container to be hidden and then have the container border drawn through a transition, triggered by the page being loaded (without hovering). I was able to find how to do this upon hovering, but I can't figure out how to do it upon page load. How would I implement that into the following code?
<div id="profile-content">
Insert Content Here
</div>
#profile-content
{
border: 3px solid;
border-color: #FFFFFF;
padding: 4em 4em 4em 14em;
margin: 0 0 0 4em;
}