Answers for "max length css"

8

how to specify amout of letters in inputfield in css

<input maxlength="25" placeholder="name" />
Posted by: Guest on April-15-2020
2

max css

.content {
  /*Choose the biggest value between these two values at any time*/
  width:max(500px,70%);
  /*equivalent to */
  width:70%;
  max-width:500px;
}
Posted by: Guest on August-14-2021

Browse Popular Code Answers by Language