私はphpとjavascriptの初心者です。WebページでjqueryUIデータピッカーを使用しています。このカレンダーを使いました
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