CSS COURSE • LESSON

📝 CSS Forms

Master CSS and create modern responsive websites with EDUHUB CODE HUB.

CSS Forms

CSS can improve the design of HTML forms.

Input Styling



input {

width:100%;

padding:12px;

border-radius:8px;

}

Focus Effect



input:focus {

border:2px solid blue;

}