我有这种HTML
<label>
<input type="checkbox">
Print document
</label>
问题是打印文档文本是不是需要复选框? 我无法在控制器的新元素中添加Print Document,是否可以这样做 是简单的CSS规则吗?
答案 0 :(得分:2)
添加CSS:
input[type=checkbox]{
padding-right : 10px;
}
答案 1 :(得分:1)
你可以这样做: 的 FIDDLE 强>
HTML:
<input type="checkbox">
<label>
Print document
</label>
CSS:
label{
margin-left:20px;
}
答案 2 :(得分:1)
您可以使用样式中的保证金:
内联CSS:
<label>
<input type="checkbox" style="margin-right:15px;">
Print document
</label>
内部CSS:
<head>
<style>
input[type=checkbox]{
margin-right: 15px;
}
</style>
</head>
<label>
<input type="checkbox" style="margin-right:15px;">
Print document
</label>
外部CSS:
style.css
input[type=checkbox]{
margin-right: 15px;
}
page.html中
<head>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<label>
<input type="checkbox" style="margin-right:15px;">
Print document
</label>
演示:
答案 3 :(得分:1)
正确的html是:<input type="checkbox"><label>Print document</label>
您可以在css中选择如下所示的复选框:
input[type=checkbox]{
margin-right: 15px;
}