Melly
Melly

Reputation: 755

CSS text input size

I was in the process of making a login page. but then when im trying out stuff i realize the font on my input is quite small.. What code can i add on to my CSS so i will have a bigger font input size?

so this is the original one original

So i tried to make it bigger and see if the font inside the input box got big example

Upvotes: 0

Views: 56

Answers (1)

Tzimpo
Tzimpo

Reputation: 1009

<input type ="text">

css

input[type="text"]{
   font-size:24px; // change to the size you want
}

Upvotes: 1

Related Questions