Top "Css-transitions" questions

CSS Transitions allows property changes in CSS values to occur smoothly over a specified duration.

CSS3 transforms and transitions (Webkit)

Consider the following fiddle p { -webkit-transform: translate(-100%, 0); -moz-transform: translate(-100%, 0); -ms-transform: translate(-100%, 0); -o-transform: translate(-100%, 0); transform: translate(-100%, 0); …

css webkit css-transitions css-transforms
Transition only for the border on hover, but not for background

Here I have some CSS: #image-edges-beneath:hover{ background-color: blue; } #image-edges:hover{ background-color: blue; } #image-edges-beneat:hover:after{ -webkit-transition: all 1s ease; …

css hover css-transitions pseudo-element pseudo-class
Difference between CSS3 transitions' ease-in and ease-out

What’s the difference between CSS3 transitions’ ease-in, ease-out, etc.?

css css-transitions
Two-tone background split by diagonal line using css

I am trying to create a background using css where one side is a solid color and the other is …

css css-transitions
CSS3 Transition Ease in and out Box Shadow

I am trying to get div id to ease in and out of a box shadow using CSS3. The current …

css hover css-transitions
Css3 transition on scale only

I am missing something obvious. But the transition on only one element isn't working here. Here's my code. #navigatore-servizi ul …

css scale css-transitions
How to prevent Webkit text rendering change during CSS transition

I'm using CSS transitions to transition between CSS transformed states (basically transitioning the scale of an element). I notice that …

css webkit css-transitions css-transforms
How can I put a <span> inside of an <input>?

This is not a duplicate. While I was basically looking for the same result as the other post, I wanted …

css input hide css-transitions
Different CSS transition-delays for hover and mouseout?

Is it possible to use CSS3 transitions with a different delay switching between "states"? For example, I'm trying to make …

css transitions css-transitions
Jerky CSS transform transition in Chrome

I am using CSS3 transform on a background image to enlarge on hover. I have tested in the latest browsers …

css css-transitions css-transforms