In order to configure transitions in CSS3 you must configure both the starting and the transition values for an element. True or False? code example
Example: how to use the transition left in css
nav:hover {
left: 0;
transition: 2s;
}
nav:hover {
left: 0;
transition: 2s;
}