- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何让这两个单选按钮水平对齐?无论我尝试什么,它们都保持垂直对齐或到处都是。截至目前,它们是垂直对齐的,但我需要左侧的标签和右侧的刻度盘并靠在一起。
<fieldset id="payment_method">
<legend>Payment Method</legend>
<div class="fieldgroup">
<input type="radio" name="payment_method"value="Bill Me"><label for= "payment1">BillMe
</label>
</div>
<div class="fieldgroup">
<input type="radio" name="payment_method"value="Bill Me"><label for= "payment2">Credit Card</label>
</div>
</fieldset>
input[type="radio"]{
float: left;
width: auto;
margin-left: 3em;
}
这里是所有的html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>San Joaquin Valley Town Hall</title>
<link rel="shortcut icon" href="images/favicon.ico">
<link rel="stylesheet" href="styles/tickets.css">
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
</head>
<body>
<header>
<img src="images/town_hall_logo.gif" alt="Town Hall logo" height="80">
<hgroup>
<h1>San Joaquin Valley Town Hall</h1>
<h2>Celebrating our <span class="shadow">75<sup>th</sup></span> Year</h2>
</hgroup>
</header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a class="current" href="tickets.html">Tickets</a></li>
</ul>
</nav>
<section>
<h1>Order Form</h1>
<form action="register_account.html" method="get"
name="registration_form" id="registration_form">
<fieldset>
<legend>Member Information</legend>
<label for="email">E-Mail:</label>
<input type="email" name="email" id="email" autofocus required><br>
<label for="first_name">First Name:</label>
<input type="text" name="first_name" id="first_name" required><br>
<label for="last_name">Last Name:</label>
<input type="text" name="last_name" id="last_name" required><br>
<label for="address">Address:</label>
<input type="text" name="address" id="address"><br>
<label for="city">City:</label>
<input type="text" name="city" id="city" required><br>
<label for="state">State:</label>
<input type="text" name="state" id="state" required maxlength="2" placeholder="2-character code"><br>
<label for="zip">ZIP Code:</label>
<input type="text" name="zip" id="zip" required placeholder="5 or 9 digits"
pattern="^\d{5}(-\d{4})?$" title="Either 5 or 9 digits"><br>
<label for="phone">Phone Number:</label>
<input type="tel" name="phone" id="phone" placeholder="999-999-9999"
pattern="\d{3}[\-]\d{3}[\-]\d{4}" title="Must be 999-999-999 format"><br>
</fieldset>
<fieldset>
<legend>Ordering Information</legend>
<label for="Order Type">Order Type:</label>
<select name="order_type" id="order_type">
<option value="j">Member Package</option>
<option value="r">Donar Package</option>
<option value="c">Single Tickets</option>
</select><br>
<label for="tickets">Number of Tickets:</label>
<input type="text" name="tickets" id="tickets" min="1" max="4" placeholder="Number of single tickets"><br>
</fieldset >
<fieldset id="payment_method">
<legend>Payment Method</legend>
<div class="fieldgroup">
<input type="radio" name="payment_method"value="Bill Me"><label for= "payment1">Bill Me</label>
</div><!--/.fieldgroup-->
<div class="fieldgroup">
<input type="radio" name="payment_method"value="Bill Me"><label for= "payment2">Credit Card</label>
</div><!--/.fieldgroup-->
</fieldset>
<fieldset>
<legend>Credit Card Information</legend>
<label for="Card Type">Card Type:</label>
<select name="card_type" id="card_type">
<option value="visa">Visa</option>
<option value="mcard">Master Card</option>
<option value="disc">Discovery</option>
</select><br>
<label for="card_number">Card Number:</label>
<input type="text" name="card_number" id="card_number"placeholder="16 digits"required
pattern="\d{16}" title="Must be 9999999999999999 format"><br>
<label for="exp_date">Expiration Date:</label>
<select name="month" id="month">
<option value="jan">January</option>
<option value="feb">February</option>
<option value="mar">March</option>
<option value="apr">April</option>
<option value="may">May</option>
<option value="jun">June</option>
<option value="jul">July</option>
<option value="aug">August</option>
<option value="sep">September</option>
<option value="oct">October</option>
<option value="nov">November</option>
<option value="dec">December</option>
</select>
<select name="month" id="year">
<option value="2012">2012</option>
<option value="2013">2013</option>
<option value="2014">2014</option>
<option value="2015">2015</option>
<option value="2016">2016</option>
</select>
</fieldset>
<fieldset id="buttons">
<legend>Submit Your Membership</legend>
<label> </label>
<input type="submit" id="submit" value="Submit">
<input type="reset" id="reset" value="Reset Fields"><br>
</fieldset>
</form>
</section>
<aside>
<h1 id="speakers">2011-2012 Speakers</h1>
<h2>October 19, 2011<br><a href="speakers/toobin.html">Jeffrey Toobin</a></h2>
<img src="images/toobin75.jpg" alt="Jeffrey Toobin photo">
<h2>November 16, 2011<br><a href="speakers/sorkin.html">Andrew Ross Sorkin</a></h2>
<img src="images/sorkin75.jpg" alt="Andrew Ross Sorkin photo">
<h2>January 18, 2012<br><a href="speakers/chua.html">Amy Chua</a></h2>
<img src="images/chua75.jpg" alt="Amy Chua photo">
<h2>February 15, 2012<br><a href="speakers/sampson.html">Scott Sampson</a></h2>
<img src="images/sampson75.jpg" alt="Scott Sampson">
</aside>
<footer>
<p>© 2012, San Joaquin Valley Town Hall, Fresno, CA 93755</p>
</footer>
</body>
</html>
这是我所有的CSS
/* So the HTML5 structural tags work in older browsers */
article, aside, figure, footer, header, nav, section {
display: block;
}
/* the styles for the elements */
* {
margin: 0;
padding: 0;
}
html {
background-color: white;
}
body {
font-family: Arial, Helvetica, sans-serif;
font-size: 87.5%;
width: 800px;
margin: 0 auto;
border: 3px solid #800000;
background-color: #fffded;
}
a:focus, a:hover {
font-style: italic;
}
/* the styles for the header */
header {
padding: 1.5em 0;
background-image: -moz-linear-gradient(
30deg, #800000 0%, #fffded 30%, white 50%, #fffded 80%, #800000 100%);
background-image: -webkit-linear-gradient(
30deg, #800000 0%, #fffded 30%, white 50%, #fffded 80%, #800000 100%);
background-image: -o-linear-gradient(
30deg, #800000 0%, #fffded 30%, white 50%, #fffded 80%, #800000 100%);
background-image: linear-gradient(
30deg, #800000 0%, #fffded 30%, white 50%, #fffded 80%, #800000 100%);
}
header h1 {
color: #800000;
}
header h2 {
font-style: italic;
}
header img {
float: left;
padding: 0 30px;
}
.shadow {
text-shadow: 2px 2px 2px #800000;
}
/* the styles for the form */
fieldset {
margin-top: 0em;
margin-bottom: .5em;
padding: .5em 1em .5em 1em;
}
legend {
color: black;
font-weight: bold;
font-size: 85%;
}
label {
float: left;
width: 10em;
text-align: right;
}
input, select {
width: 15em;
margin-left: 0.5em;
margin-bottom: 0.5em;
}
input:required, input[required] {
border: 2px solid red;
color: #800000;
}
input:valid {
border: 1px solid black;
color: #800000;
}
input:invalid {
box-shadow: none;
border: 2px solid red;
}
input[type="radio"]{
float: left;
width: auto;
margin-left: 3em;
}
br {
clear: both;
}
#year {
width: 5em;
}
#month{
width: 7em;
}
#buttons input {
width: 10em;
}
/* the styles for the navigation bar */
nav {
clear: left;
}
nav ul {
list-style: none;
padding: 1em 0; /* padding above and below li elements */
background-color: #800000; }
nav li {
display: inline; }
nav a {
padding: 1em 2em;
text-decoration: none;
color: #fffded;
font-weight: bold;
border-right: 2px solid #fffded; }
nav a.current { color: yellow; }
/* the styles for the section */
section {
clear: left;
padding: 0 20px;
width: 525px;
float: right;
}
section h1 {
color: #800000;
font-size: 150%;
padding: .5em 0 .25em;
}
section h2 {
font-size: 120%;
padding-bottom: .25em;
}
section p {
padding-bottom: .5em;
}
section blockquote {
padding: 0 2em;
font-style: italic;
}
section ul {
padding: 0 0 1.5em 1.25em;
list-style-type: circle;
}
section li {
padding-bottom: .35em;
}
article {
border-top: 2px solid #800000;
border-bottom: 2px solid #800000;
}
article h1 {
color: black;
}
article img {
float: right;
margin: 1em 0 1em 1em;
border: 1px solid black;
}
aside {
width: 215px;
float: right;
padding-left: 20px;
}
aside h1 {
color: #800000;
font-size: 150%;
padding: .5em 0 .25em;
}
aside h2 {
font-size: 120%;
padding-bottom: .25em;
}
aside img {
padding-bottom: 1em;
}
figure {
margin-top: 1em;
}
figcaption {
color: #800000;
}
table {
border-collapse: collapse;
}
thead, tfoot {
border-top: 2px solid #800000;
border-bottom: 2px solid #800000;
}
th, td {
padding: .2em .7em;
text-align: left;
}
tfoot th, tfoot td {
text-align: right;
font-weight: bold;
}
.border_bottom {
border-bottom: 2px solid #800000;
}
.right {
text-align: right;
}
/*
th:first-child, td:first-child {
text-align: left;
}
th:first-child {
vertical-align: bottom; }
th:nth-child(3) {
text-align: center; }
*/
/* the styles for the footer */
footer {
border-top: 3px solid #800000;
clear: both;
}
footer p {
padding: 1em 0;
text-align: center;
}
最佳答案
您的 css 应该用于 Fieldgroup,而不是输入类型。像这样:
<fieldset id="payment_method">
<legend>Payment Method</legend>
<div class="fieldgroup">
<input type="radio" name="payment_method"value="Bill Me"><label for= "payment1">BillMe
</label>
</div>
<div class="fieldgroup">
<input type="radio" name="payment_method"value="Bill Me"><label for= "payment2">Credit Card</label>
</div>
</fieldset>
.fieldgroup{
float: left;
width: auto;
margin-left: 3em;
}
关于html - 单选按钮水平对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24072364/
HTML 部分,只是我代码的一部分: HP: SP: EA: ED: PA: PD:
我有这个简单的脚本。我正在尝试获取选中的值并将它们添加到禁用输入框中的运行总计中。我知道它正在被选中,但它没有更新到输入框,我不确定为什么。谁能帮帮我? function updateF
我在使用自定义背景的单选按钮/复选框时遇到了问题。我在这里设计了它们的样式:Quick Tip: Easy CSS3 Checkboxes and Radio Buttons .主要部分是input在
我可以预见地读取 jQueryUI 单选按钮的值,但是,我无法以编程方式设置它。无论我使用哪种方法更改单选按钮的值,jQueryUI 界面都不会更新其界面。 Yes No
没有展开时 点击展开之后 <div class="flashread_item_box_time"> <span class="
这里是 JQuery 新手。 我有一个大约有 16 个字段的搜索表单,其中大部分是文本框。其余的都是下拉菜单。我在这些字段下方有 3 个单选按钮。当选择第一个时,表单中的某些字段应被禁用。当选择第二个
我目前正在构建一个 Fiori 应用程序用于查看事件(票证)。我必须创建一个饼图,其中包含票证的所有不同状态。当我单击图表的一部分时,它会将我带到包含该状态的所有票证的列表。我可以选择饼图的多个状态,
此代码将在使用 reloadData 刷新 UITableView 后恢复单元格选择: NSIndexPath *selectedIndexPath = [self.tableView indexPa
我正在尝试对 UITableView 单元格进行自定义选择。为此,我在我的单元格上方创建了 UIView,它现在在触摸时出现/消失。但问题是当我按下单元格选择时出现。如果那时我选择任何其他行,它也会被
我所有的复选框、单选框和文本输入都在 ID 的末尾附加了“_boom”。我想抓取这些 id 的页面,检测更改以查看其中是否有任何一个与其原始状态不同,如果是,则将 CSS 应用于页面上名为“保存”的按
我正在寻找一种方法,使多选列表框应显示为普通的单选组合框,但在单击时它应作为允许多选的列表框,如下所示,如电子表格中所示。我正在寻找 CSS HTML 和 javascript 而非 Jquery 中
我有一个 HTML 我想显示为“列表框”(一个同时显示多个元素的框,而不是下拉框)。但是,我只想允许选择一个元素。我还想将盒子的高度(通过 CSS)设置为其容器大小的 100%。 这三件事似乎是相互排
我有一个包含三个部分的付款表格。基本上,第一个是带有乘数的“单选”列表,第二个是带有设置值的“复选框”列表,第三个是带有乘数的下拉列表 ==> (jsfiddle) .为清楚起见,我插入了一个文本框来
我想删除单选按钮,只显示是或否标签。为此,我隐藏了 radio 输入并使用 css3 选择器 (:checked + label) 根据选择更改背景颜色。但由于某种原因,这不起作用。 HTML(来自
我正在使用这个插件http://www.erichynds.com/examples/jquery-ui-multiselect-widget/demos/#single对于多选,并且希望也可以在同一
我收到了这段代码,但我似乎无法正常工作,我查看了之前的问题,但找不到任何与之完全相同的代码。也许这完全是错误的,应该重新开始? 我想要做的是在选择单选按钮时显示一个 div。这是我的代码: jQue
我试图在用户点击输入(单选、复选框或选择)时移除焦点背景,但它不起作用。这些是我放在元素上的样式: .form-holder input[type="radio"]:focus, .form-
我正在使用 Bootstrap 4 并想使用单选按钮和复选框按钮组,但按钮显示的是实际的单选按钮和复选框 UI 元素,如下所示: 上面的例子直接摘自文档。我试过删除并重新安装 Bootstrap 4,
我正在使用 Collection View 进行水平滚动。它工作得很好。现在我想为选择任何单元格设置任何效果。所以,我写了这段代码” func collectionView(collectionVi
我有一个按钮组,其中包含必须充当单选按钮的几个项目。我还需要将它们分成几行并跨越容器的整个宽度。 为此,我使用了 Bootstrap 的类 btn-group-justified ,然后我拆分 元素分
我是一名优秀的程序员,十分优秀!