Followed a tutorial for a tabbed section to be put in a page
For reference, please provide a link to the tutorial that you followed.
But how can the existing CSS be adjusted to target a list of divs...
The markup provided *is* a series of divs - can you please clarify what divs you are referring to. (additional ones? existing ones?)
... and have them slide or fade into view
You can create a fade-in effect with CSS like this;
Code:
.content p { -webkit-animation:fadein 0.5s; animation:fadein 0.5s }
@-webkit-keyframes fadein { from {opacity:0} to {opacity:1} }
@keyframes fadein { from {opacity:0} to {opacity:1} }
Bookmarks