gpt4 book ai didi

html - 如何将文本移动到 CSS 中复选框的右侧?

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

我在移动文本“我同意提交此表单后发生的一切。拿走我的所有数据!”时遇到了一些麻烦。在复选框的右侧,并使复选框与左侧的其他文本对齐。代码在下面的 codepen 链接中,任何输入将不胜感激!

Sign in form below

下面的 HTML:

<html>
<head>
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen" charset="utf-8">
</head>
<form>
<h1>Sign up for the newsletter</h1>

<body>
<br></br>
<p>
<label for="name">Name</label>
<input id="name" name="Name" type="text">
</p>
<p>
<label for="email">Email</label>
<input id="email" name="Email" type="email">
</p>

<label>
<input type="checkbox" value="true" />I agree to everything that will happen after I submit this form. Take All my data!</label>

<br></br>
<p>
<input type="submit" value="SUBMIT" id="submit">
</p>
</body>
</form>
<script src="https://code.jquery.com/jquery-1.11.0.min.js" type="text/javascript" charset="utf-8">
</script>

<script src="js/app.js" type="text/javascript" charset="utf-8"></script>

</html>

下面的 CSS:

@import url('https://fonts.googleapis.com/css?family=Varela+Round');    
@import url('https://fonts.googleapis.com/css?family=Raleway:500');


form {
background: #fff;
padding: 4em 4em 2em;
max-width: 420px;
margin: 100px auto 0;
box-shadow: 0 0 1em #222;
border-radius: 9px;
position: relative;
}


h1 {
font-size: 15px;
font-weight: bold;
font-color: black;
font-family: 'Varela Round', sans-serif;
}


body {
font-size: 7px;
background: #d7d7d7; /* fallback */
font-family: 'Raleway', sans-serif;
}

p {
margin: 0 0 3em 0;
position: relative;
}

label {
display: block;
font-size: 1.6em;
margin: 0 0 1em;
color: #333;
}

input {
display: block;
margin: auto;
box-sizing: border-box;
width: 100%;
outline: none
}

input[type="text"],
input[type="email"] {
background: #f5f5f5;
border: 1px solid #e5e5e5;
font-size: 1.6em;
padding: .8em .5em;
border-radius: 5px;
}

input[type="text"]:focus,
input[type="email"]:focus {
background: #fff
}

input[type="submit"] {
font-family: 'Varela Round', sans-serif;
background: #f45226;
border-radius: 8px;
font-weight: bold;
width: 30%;
border: none;
color: #fefefe;
cursor: pointer;
display: block;
font-size: 1.6em;
line-height: 2em;
margin: auto;
outline: none;
padding: 8px;
letter-spacing: 1px;
text-shadow: 0 1px #f45226;
box-shadow: 0px 4px 8px rgba(165, 126, 157, 0.62);
}

input[type="submit"]:active {
top: 1px;
outline: none;
box-shadow: none;
}

label[type="checkbox"] {
display: block;
padding-left: 20px;
}

input[type="checkbox"] {
margin-left: -20px;
}

最佳答案

问题:

  1. 您的输入有 display: block; 占用整个可用宽度
  2. 您的输入有 width: 100%,您不需要这个。

enter image description here

解决方案:

为您的复选框添加一个类,这样新样式将只应用于这个特定的复选框。 .terms-checkbox

CSS

input.terms-checkbox {
display:inline;
width: auto;
}

在这里查看:https://codepen.io/kiranvj/pen/BVPKLN

关于html - 如何将文本移动到 CSS 中复选框的右侧?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51016056/

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