Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试为一个 div 应用类(.text1 .text2 .text3)。
这怎么可能?
在 HTML 中,这样写:
<div class="text1 text2 text3"></div>
示范
在 Javascript 中,执行以下操作:
myDiv.className = "text1 text2 text3";
在 css 中是这样的:
.text1.text2.text3 { color: #BADA55; }
您还可以使用以下选择器来定位具有所有 3 个类的 div
.text1.text2.text3 { }