0

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

2
  • 1
    use font-size to increase font-size, also designing input-elements has some pitfalls as every browser comes with their own version of them, do some research Commented Mar 8, 2020 at 9:35
  • Can you add your code on your question? Commented Mar 8, 2020 at 9:43

1 Answer 1

1
<input type ="text">

css

input[type="text"]{
   font-size:24px; // change to the size you want
}
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.