gpt4 book ai didi

css - 在左侧对齐左元素,在右侧对齐右元素

转载 作者:行者123 更新时间:2023-11-28 13:55:37 25 4
gpt4 key购买 nike

我正在处理一个 html 表单,我对其应用了一个 flexbox,左侧元素(公司、电子邮件)在左侧正确对齐,但右侧元素(姓名和电话)没有正确对齐。如何将网格的左列向右对齐?

感谢您的宝贵时间!

这是我所拥有的:

here the image

.contact form {
display: grid;
grid-template-columns: 1fr 1fr;
padding: 1rem;
background: red;
}

.contact form label {
display: block;
font-size: 15px;
margin-bottom: 5px;
}

.contact form p {
margin: 0;
padding-top: 1rem;
padding-bottom: 1rem;
}

.contact form .full {
grid-column: 1 / 3;
}

.contact form textarea {
width: 100%;
}

.contact input {
width: 80%;
height: 2rem;
border: 0.5px solid rgb(167, 156, 156);
}

.contact input::-webkit-input-placeholder {
font-size: 12px;
text-indent: 5px;
}

form .contact-to {
width: 100%;
height: 2rem;
}
<div class="contact">
<form action="" class="form">
<p class="full">
<label for="">Contact to</label>
<select class="contact-to" name="request-type">
<option value="candidates">Looking for candidates</option>
<option value="job">Looking for a job</option>
<option value="collaboration">Working with Asia-HR</option>
<option value="other">Other</option>
</select>
</p>
<p>
<label for="">Company</label>
<input type="text" name="company" placeholder="enter the name of your company">
</p>
<p>
<label for="">Name*</label>
<input type="text" name="name" placeholder="enter your name">
</p>
<p>
<label for="">Email*</label>
<input type="email" name="name" placeholder="enter your email">
</p>
<p>
<Label>Phone</Label>
<input type="phone" name="name" placeholder="enter your phone number">
</p>
<p class="full">
<label for="Your message">Your message*</label>
<textarea name="message" id="" cols="30" rows="10"></textarea>
</p>
<p class="full">
<input type="file" name="document">
</p>
<p class="full">
<button>Submit</button>

</p>
</form>
</div>

最佳答案

grid-column-gap 设置为列之间的空间,并将输入的宽度更改为 100%:

.contact form {
display: grid;
grid-template-columns: 1fr 1fr;
padding: 1rem;
background: red;
grid-column-gap: 10%;
}

.contact form label {
display: block;
font-size: 15px;
margin-bottom: 5px;
}

.contact form p {
margin: 0;
padding-top: 1rem;
padding-bottom: 1rem;
}

.contact form .full {
grid-column: 1 / 3;
}

.contact form textarea {
width: 100%;
}

.contact input {
width: 100%;
height: 2rem;
border: 0.5px solid rgb(167, 156, 156);
}

.contact input::-webkit-input-placeholder {
font-size: 12px;
text-indent: 5px;
}

form .contact-to {
width: 100%;
height: 2rem;
}
<div class="contact">
<form action="" class="form">
<p class="full">
<label for="">Contact to</label>
<select class="contact-to" name="request-type">
<option value="candidates">Looking for candidates</option>
<option value="job">Looking for a job</option>
<option value="collaboration">Working with Asia-HR</option>
<option value="other">Other</option>
</select>
</p>
<p>
<label for="">Company</label>
<input type="text" name="company" placeholder="enter the name of your company">
</p>
<p>
<label for="">Name*</label>
<input type="text" name="name" placeholder="enter your name">
</p>
<p>
<label for="">Email*</label>
<input type="email" name="name" placeholder="enter your email">
</p>
<p>
<Label>Phone</Label>
<input type="phone" name="name" placeholder="enter your phone number">
</p>
<p class="full">
<label for="Your message">Your message*</label>
<textarea name="message" id="" cols="30" rows="10"></textarea>
</p>
<p class="full">
<input type="file" name="document">
</p>
<p class="full">
<button>Submit</button>

</p>
</form>
</div>

关于css - 在左侧对齐左元素,在右侧对齐右元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58616577/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com