我正在使用 gldatepicker,它在单独使用时工作,但在输入字段和日历之间显示出巨大的差距。
这是我的html代码:
<div id="calender">
<form method="post" action="test.php" id="frm">
<input type="text" name="job_date" id="mydate" />
</form>
</div>
这是我的CSS:
#calender {
width:200px;
height:190px;
margin-top:10px;
float:right;
background-color:#333;
position:relative;
}
#mydate {
float:left;
width:196px;
}
知道我在这里做错了什么吗?