HTML
 Computer >> コンピューター >  >> プログラミング >> HTML

HTMLmaxlength属性


HTML maxlength属性は、HTMLドキュメントの入力HTML要素で許可される最大文字数を定義します。

構文

以下は構文です-

<input maxlength=”text”>

HTMLmaxlength属性の例を見てみましょう-

<!DOCTYPE html>
<html>
<style>
   body {
      color: #000;
      height: 100vh;
      background-color: #8BC6EC;
      background-image: linear-gradient(135deg, #8BC6EC 0%, #9599E2 100%);
      text-align: center;
   }
   input {
      width: 300px;
      background: transparent;
      border: 2px solid #fff;
      outline: none;
      display: block;
      margin: 1rem auto;
      border-radius: 20px;
      padding: 8px 10px;
   }
   ::placeholder {
      color: #000;
   }
   .btn {
      background: #db133a;
      color: #fff;
      border: none;
      width: 320px;
   }
</style>
<body>
<h1>HTML maxlength Attribute Demo</h1>
<form action="">
<input type="text" placeholder='Enter your first name(only 8 characters)' maxlength="8">
<input type="submit" value="SUBMIT" class="btn">
</form>
</body>
</html>

出力

HTMLmaxlength属性

次に、入力フィールドに8文字以上を入力して、maxlength属性がどのように機能するかを確認してください-

HTMLmaxlength属性


  1. HTMLリスト属性

    HTMLリスト属性は、HTMLドキュメントの要素の事前定義されたオプションを含む要素を参照します。 構文 以下は構文です- <input list=”text”> HTMLリスト属性の例を見てみましょう: 例 <!DOCTYPE html> <html> <style>    body {       color: #000;       height: 100vh;       background-colo

  2. HTMLmaxlength属性

    HTML maxlength属性は、HTMLドキュメントの入力HTML要素で許可される最大文字数を定義します。 構文 以下は構文です- <input maxlength=”text”> HTMLmaxlength属性の例を見てみましょう- 例 <!DOCTYPE html> <html> <style>    body {       color: #000;       height: 100vh;