电话
13363039260
在上一节中,我们处置惩罚了 class 值中包孕一个词的环境。在 HTML 中,一个 class 值中可以蕴含一个词列表,各个词之间用空格吞并。譬如,如果盼望将一个特定的元素同时符号为重要(important)与正告(warning),便可以写作:
<p class="important warning"> This paragraph is a very important warning. </p>
这两个词的步骤有关需要,写成 warning important 也可以。
我们若是 class 为 important 的悉数元素但凡粗体,而 class 为 warning 的所有元素为斜体,class 中同时包括 important 和 warning 的全体元素还有一个银色的后台 。便可以写作:
.important {font-weight:bold;} .warning {font-style:italic;} .important.warning {bac千克round:silver;}