There are two things you must do to increase productivity.
The first is to declare only the transition to the properties that you want to change.
, Chrome , . , , .
, Chrome , , .

div {
width: 100px;
height: 100px;
}
div:first-child {
margin-bottom: 100px;
will-change: transform, background-color;
}
div:first-child:hover {
transform: scale(1.4);
transition: transform .3s, background-color .3s;
background-color: red;
}
<div> 11111111111111111 </div>
<div> 222222222222222222 </div>
Hide result