1.css基础 selector {property: value} eg: h1 {color:red; font-size:14px;} p { text-align: center; color: black; font-family: arial; } h1,h2,h3,h4,h5,h6 { color: green; } 希望列表中的 strong 元素变为斜体字,而不是通常的粗体字,可以这样定义一个派生选择器: li strong { font-style: italic; font…