java web开发小记(8)奇奇怪怪的问题

1.有的css样式,直接在html的style中好用,放到css文件中不能用了。

如果css文件名在引用时没错,那么就是用的数字开头的id,class命名了

参考:https://zhidao.baidu.com/question/329453141.html

不要用数字做样式名,使用一个字母开头的做样式名.比如div18.
<style>
.div18{font-weight:bold; font-size:18px;}
</style>
<div class="div18">ddddd</div>
这样,另外检查一下你的LINKCSS路径是否正确.

posted on 2018-05-03 16:18  江南烟雨尘  阅读(141)  评论(0编辑  收藏  举报

导航