Heim  >  Fragen und Antworten  >  Hauptteil

CSS-Übersetzung wurde nicht angewendet

Ich muss mein Augensymbol mit meiner Anmeldeformulareingabe zentrieren. Allerdings scheinen meine Eigenschaften „Top 50 %“ und „Übersetzung“ auf die Hauptfeldklasse und nicht innerhalb der Eingabe angewendet zu werden. Daher ist das Symbol nicht innerhalb des Eingabefelds ausgerichtet.

.form .field {
  position: relative;
  height: 70px;
  width: 100%;
  margin-top: 24px;
  border-radius: 3px;
}

.field input, .field button {
  height: 70%;
  width: 100%;
  border: none;
  font-size: 14px;
  font-weight: 400;
  border-radius: 3px;
}

.field input {
  outline: none;
  padding: 0 15px;
  border: 1px solid#CACACA;
}

.eye-icon {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 18px;
  color: #8b8b8b;
  cursor: pointer;
  padding: 5px;
}
<div class="field input-field">
  <label for="login-pwd">Password</label>
  <input type="password" name="password" class="form-control" placeholder="Password" id="login-pwd" required="">
  <i class="bx bx-hide eye-icon" id="toggle-password"></i>
</div>

Kann mir jemand helfen, dieses Problem zu lösen? Ich möchte, dass sich mein Symbol in der Mitte des Eingabetyps „Passwort“ befindet.

P粉441076405P粉441076405426 Tage vor502

Antworte allen(1)Ich werde antworten

  • P粉841870942

    P粉8418709422023-09-12 21:26:28

    你需要给父元素position:relative;

    .input-field {
     position: relative;
    }

    Antwort
    0
  • StornierenAntwort