- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
在格式化我的文件时遇到了一些问题,我认为我做得对,但我想不是。我想要宽度更长,上面的颜色是棕色的。我还希望我的单选按钮都在同一行上,并且像这样位于单词的左侧。
o School o College o University
我做错了什么?到目前为止,这是我的代码。
<!DOCTYPE html></Applications/MAMP/htdocs/site2/chapter04-project01.html>
<html>
<head lang="en">
<meta charset="utf-8">
<title>Chapter 4</title>
<link rel="stylesheet" href="reset.css" />
<link rel="stylesheet" href="chapter04-project01.css" />
<style>
body {
line-height: 1;
margin: 100px 525px;
}
div {
background: rgba(0, 0, 0, .1);
border-radius: 5px;
box-sizing: border-box;
padding: 0px;
width: 220px;
}
header {
overflow: clear;
position: relative;
}
cap {
font-family: Georgia, Cambria, "Times New Roman", serif;
font-size: 18px;
font-weight: 700;
margin: 0 0 10px;
text-align: center;
}
button {
position: absolute;
bottom: -4px;
}
button:first-child {
left: 0;
}
button:last-child {
right: 0;
}
table {
background: #fff;
border-collapse: collapse;
color: #222;
font-family: 'Lucida Sans', Verdana, Arial, sans-serif;
font-size: 13px;
width: 100%;
}
td {
border: 1px solid #ccc;
color: #444;
line-height: 22px;
text-align: center;
}
tr:first-child td {
color: #222;
font-weight: 700;
}
.selected {
background: #f0951d;
border: 0;
box-shadow: 0 2px 6px rgba(0, 0, 0, .5) inset;
}
fieldset {
background:#B8860B
color:#B8860B
width:100%
}
</style>
</head>
<body style ="text-align:center;">
<div>
<header>
<button>«Sep</button>
<cap>October 2014</cap>
<button>Nov»</button>
</header>
<table>
<tr>
<td>S</td>
<td>M</td>
<td>T</td>
<td>W</td>
<td>T</td>
<td>F</td>
<td>S</td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
</tr>
<tr>
<td>5</td>
<td>6</td>
<td>7</td>
<td>8</td>
<td>9</td>
<td>10</td>
<td>11</td>
</tr>
<tr>
<td>12</td>
<td>13</td>
<td>14</td>
<td>15</td>
<td>16</td>
<td>17</td>
<td>18</td>
</tr>
<tr>
<td>19</td>
<td>20</td>
<td>21</td>
<td>22</td>
<td>23</td>
<td>24</td>
<td>25</td>
</tr>
<tr>
<td>26</td>
<td>27</td>
<td>28</td>
<td>29</td>
<td>30</td>
<td>31</td>
<td></td>
</tr>
</table>
<footer>
<button>«</button>
<h2> </h2>
<button>»</button>
</footer>
</div>
<form method="get" action="process.php">
<fieldset>
<legend>Meeting Details</legend>
<p>
<label> Client Name: </label>
<input type="text" name="Client Name"/>
</p>
<p>
<label>First Meeting? </label>
<input type="checkbox"name="yes">
</p>
<p>
<label>Client type:</label>
<input type="radio" name="where" value="1">School<input type="radio" name="where" value="2">College <input type="radio" name="where" value="3">University
</p>
</fieldset>
</form>
</body>
</html>
fiddle > http://jsfiddle.net/9m5kekuc/
最佳答案
问题 1: 只需将单选按钮包装在单独的 <div>
中将它们放在一行中。
更新代码:
<p><label>Client type:</label></p>
<div>
<input type="radio" name="where" value="1" />
<label>School</label>
<input type="radio" name="where" value="2" />
<label>College</label>
<input type="radio" name="where" value="3" />
<label>University</label>
</div>
问题 2: 修复布局:
更新代码:HTML
<!--Added ID to the Calender DIV so you can give **style** for this particular DIV rather making it generic for all DIVs-->
<div id="calender">
<header>
<button>«Sep</button>
<cap>October 2014</cap>
<button>Nov»</button>
</header>
<table>
<tr>
<td>S</td>
<td>M</td>
<td>T</td>
<td>W</td>
<td>T</td>
<td>F</td>
<td>S</td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
</tr>
<tr>
<td>5</td>
<td>6</td>
<td>7</td>
<td>8</td>
<td>9</td>
<td>10</td>
<td>11</td>
</tr>
<tr>
<td>12</td>
<td>13</td>
<td>14</td>
<td>15</td>
<td>16</td>
<td>17</td>
<td>18</td>
</tr>
<tr>
<td>19</td>
<td>20</td>
<td>21</td>
<td>22</td>
<td>23</td>
<td>24</td>
<td>25</td>
</tr>
<tr>
<td>26</td>
<td>27</td>
<td>28</td>
<td>29</td>
<td>30</td>
<td>31</td>
<td></td>
</tr>
</table>
<footer>
<button>«</button>
<h2> </h2>
<button>»</button>
</footer>
</div>
<!--Wrapped the <form> in a separate <div>, again so you can give **style** for this particular DIV -->
<div id="meetingDetails">
<form method="get" action="process.php">
<fieldset>
<legend>Meeting Details</legend>
<p>
<label>Client Name:</label>
<input type="text" name="Client Name" />
</p>
<p>
<label>First Meeting?</label>
<input type="checkbox" name="yes" />
</p>
<p>
<label>Client type:</label>
</p>
<!--Wrapped the "Radio Buttons" in a separate <div>, so they come in a single line -->
<div>
<input type="radio" name="where" value="1" />
<label>School</label>
<input type="radio" name="where" value="2" />
<label>College</label>
<input type="radio" name="where" value="3" />
<label>University</label>
</div>
</fieldset>
</div>
更新的 CSS
body {
line-height: 1;
margin: 0 auto; /*FIX ADDED*/
padding:0; /*FIX ADDED*/
width:100%; /*FIX ADDED*/
}
/*FIX ADDED - Removed General DIV and gave style to the Calender ID */
#calender {
background: rgba(0, 0, 0, .1);
border-radius: 5px;
box-sizing: border-box;
padding: 0px;
width: 220px;
text-align:center; /*FIX ADDED*/
margin:0 auto; /*NEW FIX FOR CENTER BOX*/
}
/*FIX ADDED - Updated style to be Nested for Calender, so elements which are under "#calender" ID, only they get updated */
#calender header {
overflow: clear;
position: relative;
}
#calender cap {
font-family: Georgia, Cambria, "Times New Roman", serif;
font-size: 14px; /*FIX ADDED*/
font-weight: 700;
margin: 0 0 10px;
line-height:22px; /*FIX ADDED*/
}
#calender button {
position: absolute;
bottom: -2px; /*FIX ADDED*/
}
#calender button:first-child {
left: 0;
}
#calender button:last-child {
right: 0;
}
#calender table {
background: #fff;
border-collapse: collapse;
color: #222;
font-family:'Lucida Sans', Verdana, Arial, sans-serif;
font-size: 13px;
width: 100%;
}
#calender td {
border: 1px solid #ccc;
color: #444;
line-height: 22px;
text-align: center;
}
#calender tr:first-child td {
color: #222;
font-weight: 700;
}
#calender .selected {
background: #f0951d;
border: 0;
box-shadow: 0 2px 6px rgba(0, 0, 0, .5) inset;
}
/*FIX ADDED - Added style for "Meeting Details box" */
#meetingDetails {
background-color: #ccc;
width:500px;
margin:0 auto; /*NEW FIX FOR CENTER BOX*/
}
将两个框都放在屏幕的中央 在“margin:0 auto;
”和“#calender
”中添加“#meetingDetails
”属性
代码如下:
#calender {
background: rgba(0, 0, 0, .1);
border-radius: 5px;
box-sizing: border-box;
padding: 0px;
width: 220px;
text-align:center;
margin:0 auto; /*NEW FIX FOR CENTER BOX*/
}
#meetingDetails {
background-color: #ccc;
width:500px;
margin:0 auto; /*NEW FIX FOR CENTER BOX*/
}
注意:根据新要求更新了 fiddle !
关于html - 在格式化时遇到一些麻烦,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25674203/
我已经习惯了 hibernate ,但我时不时地跌跌撞撞,这是另一个。 我正在努力实现以下目标: @OneToMany @JoinTable(name = "inter_spec",
我的 CakePHP 网站几个月来一直运行良好,直到我今天尝试访问它时,出现以下错误: Warning: include(Cake/bootstrap.php): failed to open str
此代码对其他人有效吗?很长一段时间以来,添加事件监听器都不起作用。 Page Title window.onload = init(); function init
我试图在文本中只留下 a-zA-Z0-9._ : $new_pgname=preg_replace('|(^[a-zA-Z0-9_\.])|s','',$new_pgname); 但是你猜怎么着……对
html: [...][...] js [...]alert(document.getElementById("test").name);[...] 为什么我得到的是“undefined”而不是“te
我正在尝试创建一个实现 main 方法的驱动程序类。它必须创建并测试一个对象来演示所有程序功能。 我认为我已经创建了正确的驱动程序类,但我运行的测试证明我的代码中存在错误,这就是我到目前为止所拥有的。
我正在制作一款扑克游戏,但遇到了一个问题,几乎所有事情都可以按照交易按钮的 actionListener 进行。它应该删除交易按钮并添加一个新的 JTextArea (此文本只是一个占位符)。在那之前
我有一些编程经验,但我对 python 很陌生,我正在尝试弄清楚如何使用和导入 .py 文件中的类而不是 main 。我目前正在使用 netbeans,运行 CPython 3.2.1。 根据我现在的
好吧,我不知道发生了什么。我对 iOS 还比较陌生,所以我的调试技能还达不到他们需要的水平。我有一个文本字段工作得很好,直到我在我的应用程序中做了一些更改,这些更改与文本字段没有任何关系(至少我认为它
你好社区我有以下问题。 我的 list 文件如下所示。
我正在使用Drupal2Wordpress plugin将我的内容从 Drupal 传输到 WP,但我在尝试开始该过程时收到此错误:无法连接到 Drupal 数据库。 这是MySQL的日志: 1504
我有以下代码。它编译得很好,但它告诉我字符串是“E#^$$@$$$$$$$”。有什么想法吗? ifstream InFile(Filename); if (!InFile) return fa
我正在为类(class)的期末考试做准备,并且正在尝试重做作业问题。这是我第一次获得零学分的其中之一。 此练习的目标是创建一个 URL,该 URL 将指向包含以下 HTML 的页面,而不是显示预期的协
我开始研究套接字,但遇到了麻烦!我做错了什么? 服务器: /* server.c */ /* ############### INCLUDES ############### */ #include
我正在尝试制作一个逐行读取文件然后将读取的行放入链表的程序,我的问题是将字符串添加到列表中。看代码,在else测试中你可以看到我的问题。 #include #include struct list_e
我是 WordPress 新手,正在为 friend 编辑网站。我正在尝试向站点添加 RSS 提要,因此我编辑了 header.php 文件(这就是它的去向)。 我还编辑了 CSS,然后使用 File
我将向您展示 2 个场景(注意 d=damping factor=0.5) 第一种情况:假设有 4 个节点 A, B, C, D : B、C、D 链接到 A。 PageRank 是:PR(A)=0.5
我无法理解 mem_fun_ref。我必须承认,我通常将仿函数用于此类事情,因为它们可以内联以提高速度和利润。但是,这段代码不会成为瓶颈,所以我想尝试一下。 这是我想做的一个例子。我知道还有其他方法可
尝试使用 AudioClip 编译 applet 时出现预期标识符错误。我计划将其添加到 JFrame,并希望让 AudioClip 循环播放。 import java.applet.*; impor
我正在尝试开始使用 node.js,但我绝不是高级程序员。除了检查我的 ip,我从未使用过 cmd。 我的问题是我不知道将文件保存在哪里,以及如何使用 node.js 从 cmd 运行它们。我发现的教
我是一名优秀的程序员,十分优秀!