gpt4 book ai didi

html - 如何在一行中将单选按钮与标签、图例和字段集对齐

转载 作者:太空宇宙 更新时间:2023-11-04 06:38:47 25 4
gpt4 key购买 nike

所以我正在为我的元素创建一个驱动程序注册表,我需要帮助将这些单选按钮对齐在一行中。我尝试使用 Clear: both;方法以及下面提到的方法:

form label[for="yes"],
form label[for="yes"] + input,
form label[for="no"],
form label[for="no"] + input {
clear: none;
width: auto;
}

但没有任何效果 :( 。我也尝试使用段落标记,但那也不起作用。

这是片段:

body{
margin: 0;
padding: 0;
font-family: sans-serif;
background: #34495e;
}
.box{
width: 300px;
padding: 40px;
position: absolute;
top: 80%;
left: 50%;
transform: translate(-50%,-50%);
background: #191919;
text-align: center;
}
.box h1{
color: white;
text-transform: uppercase;
font-weight: 500;
}

select > option{
background: #191919;
color: white;
}

.box textarea{
height: 75px;
}

.box label[for="Male"],
.box label[for="Male"] + input,
.box label[for="Female"],
.box label[for="Female"] + input,
.box label[for="Other"],
.box label[for="Other"] + input,
.box input[type = "radio"] {
display: inline;
clear: none;
width: auto;
}

.box input[type = "text"],.box input[type = "password"], .box select, .box input[type = "tel"], .box textarea, .box fieldset,
.box input[type = "radio"]{
border:0;
background: none;
display: block;
margin: 20px auto;
text-align: center;
border: 2px solid #3498db;
padding: 14px 10px;
width: 200px;
outline: none;
color: white;
border-radius: 24px;
transition: 0.25s;
}
.box input[type = "text"]:focus,.box input[type = "password"]:focus,.box select:focus, .box input[type = "tel"]:focus,
.box textarea:focus{
width: 280px;
border-color: #2ecc71;
}
.box input[type = "submit"]{
border:0;
background: none;
display: block;
margin: 20px auto;
text-align: center;
border: 2px solid #2ecc71;
padding: 14px 40px;
outline: none;
color: white;
border-radius: 24px;
transition: 0.25s;
cursor: pointer;
}
.box input[type = "submit"]:hover{
background: #2ecc71;
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>My Example</title>
<link rel="stylesheet" href="Driver-css.css">

</head>
<body>

<form class="box" method="POST" action="test.html">

<h1>Driver Registration</h1>

<input type="text" name="" placeholder="First Name" required>

<input type="text" name="" placeholder="Middle Name" required>

<input type="text" name="" placeholder="Last Name" required>

<input type="tel" name="phone_number" placeholder="Mobile Number" pattern="[0-9]{10}" required>

<input type="tel" name="phone_number" placeholder="Emergency Number" pattern="[0-9]{10}" required>

<textarea name="comments" placeholder="Address" maxlength="500" required></textarea>

<input type="tel" name="" placeholder="License Number" pattern="[A-Z]{2}[0-9]{13}" required>

<fieldset>
<legend>Gender</legend>
<label for="Male"><input type="radio" name="Gender" required value="Male"> Male</label>
<label for="Female"><input type="radio" name="Gender" required value="Female"> Female</label>
<label for="Other"><input type="radio" name="Gender" required value="Other"> Other </label>
</fieldset>


<select required id="pickup_place" name="pickup_place">
<option value="" selected="selected">Select One</option>
<option value="Automobile" >Automobile</option>
<option value="Civill" >Civil</option>
<option value="Computer" >Computer</option>
<option value="Electrical" >Electrical</option>
<option value="Mechanical" >Mechanical</option>
</select>

<input type="submit" name="" value="Submit">

</form>
</body>
</html>

帮助将不胜感激!

最佳答案

添加以下样式

.box input[type="radio"] {
display: inline;
width: auto;
}

fieldset label {
margin-right: 5px;
}

body {
margin: 0;
padding: 0;
font-family: sans-serif;
background: #34495e;
}

.box {
width: 300px;
padding: 40px;
position: absolute;
top: 80%;
left: 50%;
transform: translate(-50%, -50%);
background: #191919;
text-align: center;
}

.box h1 {
color: white;
text-transform: uppercase;
font-weight: 500;
}

select>option {
background: #191919;
color: white;
}

.box textarea {
height: 75px;
}

.box label[for="Male"],
.box label[for="Male"]+input,
.box label[for="Female"],
.box label[for="Female"]+input,
.box label[for="Other"],
.box label[for="Other"]+input,
.box input[type="radio"] {
display: inline;
clear: none;
width: auto;
}

.box input[type="text"],
.box input[type="password"],
.box select,
.box input[type="tel"],
.box textarea,
.box fieldset,
.box input[type="radio"] {
border: 0;
background: none;
display: block;
margin: 20px auto;
text-align: center;
border: 2px solid #3498db;
padding: 14px 10px;
width: 200px;
outline: none;
color: white;
border-radius: 24px;
transition: 0.25s;
}

.box input[type="text"]:focus,
.box input[type="password"]:focus,
.box select:focus,
.box input[type="tel"]:focus,
.box textarea:focus {
width: 280px;
border-color: #2ecc71;
}

.box input[type="submit"] {
border: 0;
background: none;
display: block;
margin: 20px auto;
text-align: center;
border: 2px solid #2ecc71;
padding: 14px 40px;
outline: none;
color: white;
border-radius: 24px;
transition: 0.25s;
cursor: pointer;
}

.box input[type="submit"]:hover {
background: #2ecc71;
}

.box input[type="radio"] {
display: inline;
width: auto;
}

fieldset label {
margin-right: 5px;
}
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>My Example</title>
<link rel="stylesheet" href="Driver-css.css">

</head>

<body>

<form class="box" method="POST" action="test.html">

<h1>Driver Registration</h1>

<input type="text" name="" placeholder="First Name" required>

<input type="text" name="" placeholder="Middle Name" required>

<input type="text" name="" placeholder="Last Name" required>

<input type="tel" name="phone_number" placeholder="Mobile Number" pattern="[0-9]{10}" required>

<input type="tel" name="phone_number" placeholder="Emergency Number" pattern="[0-9]{10}" required>

<textarea name="comments" placeholder="Address" maxlength="500" required></textarea>

<input type="tel" name="" placeholder="License Number" pattern="[A-Z]{2}[0-9]{13}" required>

<fieldset>
<legend>Gender</legend>
<label for="Male"><input type="radio" name="Gender" required value="Male"> Male</label>
<label for="Female"><input type="radio" name="Gender" required value="Female"> Female</label>
<label for="Other"><input type="radio" name="Gender" required value="Other"> Other </label>
</fieldset>


<select required id="pickup_place" name="pickup_place">
<option value="" selected="selected">Select One</option>
<option value="Automobile">Automobile</option>
<option value="Civill">Civil</option>
<option value="Computer">Computer</option>
<option value="Electrical">Electrical</option>
<option value="Mechanical">Mechanical</option>
</select>

<input type="submit" name="" value="Submit">

</form>
</body>

</html>

关于html - 如何在一行中将单选按钮与标签、图例和字段集对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53984591/

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