代码编辑器:
x
1
<style>
2
.mystyle {
3
width: 500px;
4
height: 50px;
5
}
6
.anotherClass {
7
background-color: lightblue;
8
}
9
.thirdClass {
10
text-align: center;
11
font-size: 25px;
12
color: black;
13
margin-bottom: 10px;
14
}
15
</style>
16
<p>点击按钮显示 div 元素的类名</p>
17
<div id="myDIV" class="mystyle anotherClass thirdClass">
18
我是一个 DIV 元素,我使用了多个 类名。