我是 php 和 javascript 的新手。我在我的网页中使用 jquery UI 数据选择器。我用了这个日历
http://jqueryui.com/download
它的CSS代码是
<style type="text/css">
/*demo page css*/
body{ font: 62.5% "Trebuchet MS", sans-serif; margin: 50px;}
.demoHeaders { margin-top: 2em; }
#dialog_link {padding: .4em 1em .4em 20px;text-decoration: none;position: relative;}
#dialog_link span.ui-icon {margin: 0 5px 0 0;position: absolute;left: .2em;top: 50%;margin-top: -8px;}
ul#icons {margin: 0; padding: 0;}
ul#icons li {margin: 2px; position: relative; padding: 4px 0; cursor: pointer; float: left; list-style: none;}
ul#icons span.ui-icon {float: left; margin: 0 4px;}
</style>
和html代码是:
<td>Required Date:</td>
<td>
<script>
$(function() {
$( "#datepicker" ).datepicker();
});
</script>
<div class="demo">
<p><input type="text" id="datepicker"></p>
</div><!-- End demo -->
<div class="demo-description" style="display: none; ">
--some description
</div><!-- End demo-description -->
</td>
现在的问题是这个日历的正文样式在整个页面上实现,而我的页面还有另一个 css 文件.. 如果我删除这个日历的正文样式,那么我的日历显得太大了。. i want the size of my calendar is same as mentioned in body style. what should i do.. please need help