我有简单的表单并附加了css文件。你可以看到有2个字段和一个复选框 - 我想直接在textarea下创建复选框,大约1-2px空间,而不是现在 - 我该如何修改它?我认为问题出在这里:
.textox, .textoxarea {
width: 340px;
border: solid 1px #999999;
padding: 2px;
border-radius: 4px;
font-size: 14px;
box-shadow: 0px 1px 2px 0px #9C9C9C;
background-color: #FFFFFF;
outline: none;
color: #474747;
text-align: center;
font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
font-size: 14px;
font-style: normal;
font-variant: normal;
font-weight: 100;
}
但我无法找到合适的方法。 这是我的fiddle。 谢谢!
答案 0 :(得分:1)
答案 1 :(得分:1)
.center p:nth-of-type(2),.center p:nth-of-type(3){
margin:0;
}
这将减少覆盖输入元素的P
标签中的边距空间
通常不建议使用
p
标记来对齐输入标记。
答案 2 :(得分:0)
您好<input type="checkbox">
添加这些样式。
.foo {
bottom: 1px;
margin-left: 0;
margin-right: 5px;
position: relative;
}
.foo 作为复选框上的示例类。