Can anyone explain the css part of this code? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Can anyone explain the css part of this code?

https://code.sololearn.com/WQ60Z0riL818/?ref=app

27th May 2020, 7:37 AM
THE CRAZY ONE ✌️
THE CRAZY ONE ✌️ - avatar
2 Answers
+ 2
input:focus{ width: 250px; } There, you said to set the input’s width as 250pixels when the input has focus, or when user clicks on it to type. input{ transition: width .35s ease-in-out; } And then there you said to transition to 250px in 0.35 seconds. You said to make the input’s width 250px, first, and then you added a transition for it...
27th May 2020, 7:47 AM
Ginfio
Ginfio - avatar
+ 3
input[type=text] select 'input' tag that has 'type' attribute with value of 'text' input[type=text]:focus give a style when it get focused
27th May 2020, 7:42 AM
durian
durian - avatar