标签:style blog class c code java
li strong { font-style: italic; font-weight: normal; }
strong {
color: red;
}
h2 {
color: red;
}
h2 strong {
color: blue;
}
<p>The strongly emphasized word in this paragraph is<strong>red</strong>.</p>
在这个段落中 ,strong标签中的样式是红色的。
<h2>This subhead is also red.</h2>
这个标题标签也是红的。
<h2>The strongly emphasized word in this subhead is<strong>blue</strong>.</h2>
这个h2标签中的strong元素样式是蓝色的。
标签:style blog class c code java
原文地址:http://www.cnblogs.com/aobingyan/p/3740157.html