gpt4 book ai didi

html - 如何在我的网站上设置我的盒子和标签的样式?

转载 作者:行者123 更新时间:2023-11-28 04:45:06 25 4
gpt4 key购买 nike

我正在尝试对其进行格式化,使问题标签“q”居中并位于问题框上方,下方同样居中的是“A”标签和框,按钮位于其下方。感谢您的帮助。

h1 {
text-align: center;
}
label,
input {
width: 120px;
display: block;
float: left;
margin-bottom: 10px;
}
label {
width: 240px;
text-align: right;
padding-right: 10px;
margin-top: 2px;
}
br {
clear: left;
}
.button {
width: 120px;
background: rgba(144, 255, 246, 0.42);
color: #0000a0;
padding: 5px;
border: none;
border-radius: 2px;
cursor: pointer;
margin-left: 250px;
}
body {
background-image: url(assets/bg1.png);
}
<form name="ThisForm">
<h1>Learning to multiply</h1>

Q:
<input type="text" name="question" id="question" disabled="disabled" />A:
<input type="text" name="Ans" id="Ans" maxlength="3" size="3" />
<input type="button" value="Check Answer" onclick="buttonPressed()"/>
<br />
</form>

最佳答案

form元素设置text-aligncenter;将"Q:""A:"文本分别设置为span元素的html;从 css 中移除 float: left;将 input position 设置为 relative;将 form input left 设置为 50% 减去 input width 除以 2 使用 calc() 函数。

h1 {
text-align: center;
}
label,
input {
width: 120px;
position: relative;
display: block;
margin-bottom: 10px;
}
label {
width: 240px;
text-align: right;
padding-right: 10px;
margin-top: 2px;
}

.button {
width: 120px;
background: rgba(144, 255, 246, 0.42);
color: #0000a0;
padding: 5px;
border: none;
border-radius: 2px;
cursor: pointer;
margin-left: 250px;
}

form {
text-align:center;
}

form input {
left: calc(50% - 120px / 2);
}
<form name="ThisForm">
<h1>Learning to multiply</h1>
<span>Q:</span>
<input type="text" name="question" id="question" disabled="disabled" />
<span>A:</span>
<input type="text" name="Ans" id="Ans" maxlength="3" size="3" /><br>
<input type="button" value="Check Answer" onclick="buttonPressed()" />
</form>

关于html - 如何在我的网站上设置我的盒子和标签的样式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41006343/

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