Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Center only one element within a div

Tags:

html

css

I have this HTML code:

    <div>
        <input id="cemail" type="email" name="email" placeholder="Your E-Mail" required>                    
        <span>Proper format "[email protected]"</span>
    </div>

I've configured 'text-align: center' on the div but unfortunately span text is also centered (see the image below). I need span to be near it and not centered.

enter image description here

like image 280
ohadinho Avatar asked Nov 16 '25 08:11

ohadinho


1 Answers

You probably should center your parent element, and not div inside form:

.center-form {
  text-align: center;
}

.center-form form {
  display: inline-block;
  text-align: left;
}
<div class="center-form">
  <form action="">
    <div>
      <input id="cemail" type="email" name="email" placeholder="Your E-Mail" required>
    </div>
    <div>
      <input id="cemail" type="email" name="email" placeholder="Your E-Mail" required>
      <span>Proper format "[email protected]"</span>
    </div>
    <div>
      <input id="cemail" type="email" name="email" placeholder="Your E-Mail" required>
    </div>
    <button>Submit</button>
  </form>
</div>

Or if you want span not to affect form position, use position: absolute:

.center-form {
  text-align: center;
}

.center-form form {
  display: inline-block;
  text-align: left;
}

.center-form form div {
  position: relative;
}

.center-form form div span {
  position: absolute;
  left: 100%;
  top: 0;
  
  /* for demo */
  white-space: nowrap;
}
<div class="center-form">
  <form action="">
    <div>
      <input id="cemail" type="email" name="email" placeholder="Your E-Mail" required>
    </div>
    <div>
      <input id="cemail" type="email" name="email" placeholder="Your E-Mail" required>
      <span>Proper format "[email protected]"</span>
    </div>
    <div>
      <input id="cemail" type="email" name="email" placeholder="Your E-Mail" required>
    </div>
    <button>Submit</button>
  </form>
</div>
like image 126
t1m0n Avatar answered Nov 19 '25 04:11

t1m0n



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!