当前位置:  开发笔记 > 前端 > 正文

CSS,为什么一件事有效而另一件事无效?

如何解决《CSS,为什么一件事有效而另一件事无效?》经验,为你挑选了1个好方法。

为什么这样做:

 
testing 10,9,8,7

这不是吗?

testing 10,9,8,7

我在哪里创建了一个css文件说:

body {
  background-color: #FFFFFF;
  text-align: center;
}

roundedCornerBox {
   background-color: #ccc;
   -moz-border-radius: 5px;
   -webkit-border-radius: 5px;
   border: 1px solid #000;
   padding: 10px;
}

这是我的HTML代码:




           



testing 10,9,8,7
testing 10,9,8,7

Mark Coleman.. 8

你确定你不是说:

testing 10,9,8,7

.roundedCornerBox {
   background-color: #ccc;
   -moz-border-radius: 5px;
   -webkit-border-radius: 5px;
   border: 1px solid #000;
   padding: 10px;
}

您需要点来标识一个css类,并使用该css类,您需要将类名放在dom元素的class属性中.



1> Mark Coleman..:

你确定你不是说:

testing 10,9,8,7

.roundedCornerBox {
   background-color: #ccc;
   -moz-border-radius: 5px;
   -webkit-border-radius: 5px;
   border: 1px solid #000;
   padding: 10px;
}

您需要点来标识一个css类,并使用该css类,您需要将类名放在dom元素的class属性中.

推荐阅读
殉情放开那只小兔子
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有