这是HTML的代码
JavaScript简易日历 - 智能课堂 - www.zhinengshe.com 1 JAN
2 FER
3 MAR
4 APR
5 MAY
6 JUN
7 JUL
8 AUG
9 SEP
10 OCT
11 NOV
12 DEC
这是 CSS里面的代码
@charset "utf-8";
/* CSS Document */
* { padding: 0; margin: 0; }
li { list-style: none; }
body { background: #f6f9fc; font-family: arial; }
.calendar { width: 210px; margin: 50px auto 0; padding: 10px 10px 20px 20px; background: #eae9e9; }
.calendar ul { width: 210px; overflow: hidden; padding-bottom: 10px; }
.calendar li { float: left; width: 58px; height: 54px; margin: 10px 10px 0 0; border: 1px solid #fff; background: #424242; color: #fff; text-align: center; cursor: pointer; }
.calendar li h2 { font-size: 20px; padding-top: 5px; }
.calendar li p { font-size: 14px; }
.calendar .active { border: 1px solid #424242; background: #fff; color: #e84a7e; }
.calendar .active h2 { }
.calendar .active p { font-weight: bold; }
.calendar .text { width: 178px; padding: 0 10px 10px; border: 1px solid #fff; padding-top: 10px; background: #f1f1f1; color: #555; }
.calendar .text h2 {font-size: 14px; margin-bottom: 10px; }
.calendar .text p { font-size: 12px; line-height: 18px; }
CCS文件和HTML在同一个文件夹里面,我用的是dreamweaver,使用360浏览器,还有IE
我把CSS调用到内部的时候就能显示,但是放到外部调用就显示不了了!!求帮助!!
回复讨论(解决方案) 检查 下路径
检查 下路径
两个文件都在同一个文件夹里面。。。
我把CSS调用到内部的时候就能显示,但是放到外部调用就显示不了了!!求帮助!! 就是证明外部的css文件没有被正确加载
路径的问题吧
Statement: The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn