这种效果应该怎么设置呢,我做出来的是这样的
,
选框和文字不能对齐,颜色也不对。并且感觉人家要求应该是单选框,但是单选框是圆形的,更不一样了。
我是这样写的:
<span>产品搜索</span>
<form method="post" action="">
<input type='checkbox' name="title"value='title'>
<label name='title'>按题目</label>
<input type='checkbox' name="title"value='content'>
<label name='content'>按内容</label>
<input type='text' class="search_box">
<input type='button' name='search' value='搜索'>
</div>
#search form{
float:left;
margin-left: 5px;
}
#search form label{
color: #fff;
}
input[type="checkbox"]{
margin: 7px 0px 0px 15px;
}
input[type='text']{
width:186px;
height: 20px;
margin-right: 15px;
padding:0 5px;
}
input[type='button']{
color: red;
padding:3px 13px;
background-color: #fff;
}
绯红卷千红