.stress{
color:red;
}
</style>
</head>
<body>
<h1>勇气</h1>
<p>三年级时,我还是一个<span class="stress">胆小如鼠</span>的小女孩,
和下面的有什么区别吗
span{
color:red;
}
</style>
</head>
<body>
<h1>勇气</h1>
<p>三年级时,我还是一个<span>胆小如鼠</span>的小女孩,
一个标签选择器,一个是类选择。类选择器可以作用在任何元素上,标签选择器只能作用在改元素标签上。
举个栗子,定义一个warning类,那么这个类可以应用在任何元素上,如p、span、h1
<style type="text/css"> .warning{ color:red; } </style> <body> <h1 class="warning">我是应用warning类的标题</h1> <p class="warning">我是应用warning类的段落</p> </body>
哈哈,还是写代码比较容易理解