Open In App

Transition shorthand with multiple properties in CSS?

Improve
Improve
Improve
Like Article
Like
Save Article
Save
Share
Report issue
Report

In this article we are going to learn about Transition shorthand with multiple properties in CSS, The transition shorthand in CSS allows specifying multiple properties for smooth transitions between different states or values. The transition property in CSS is used to create some transition in an element. This property changes the value smoothly. This article contains a hover effect over a div element to change the width and height of elements after the transition.

The list of transition properties is given below:

  • transition-property
  • transition-duration
  • transition-timing-function
  • transition-delay

Syntax:

div {
transition: <property> <duration> <timing-function> <delay>;
}

Example 1: In this example, we are using the above-explained properties.

html




<!DOCTYPE html>
<html>
 
<head>
    <style>
        h1 {
            color: Green;
            text-align: center;
        }
 
        h3 {
            text-align: center;
        }
 
        input[type=text] {
            width: 100px;
            -webkit-transition: width .35s ease-in-out;
            transition: width .35s ease-in-out;
        }
 
        input[type=text]:focus {
            width: 250px;
        }
    </style>
</head>
 
<body>
    <h1>GeeksforGeeks</h1>
    <h3>Search:
      <input type="text"
             name="searchbox">
      </h3>
</body>
 
</html>


Output:

transition

Note: If the duration part is not specified, the transition will have no effect, because its default value is 0. The transition property specifies mainly two things. The first one is the CSS property to add effects and the second one is the duration unless the transition will be effect less.

Example 2: Here is another example of transition property.

html




<!DOCTYPE html>
<html>
 
<head>
    <style>
        h1 {
            color: Green;
        }
 
        div {
            width: 1px;
            height: 0px;
            text-align: center;
            background: Green;
            -webkit-transition: width 2s, height 2s;
            transition: width 2s, height 2s;
        }
 
        div:hover {
            width: 300px;
            height: 240px;
        }
    </style>
</head>
 
<body>
    <h1>GeeksforGeeks</h1>
    <div>
        <img src=
             align="middle">
    </div>
</body>
 
</html>


Output:

transition



Last Updated : 03 Aug, 2023
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads