css-HTML中复合调用样式类
注:在一个HTML标签内,可以复合调用多个样式类,也是用空格做运算符,复合类名总字符不能超过256
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><html><head><title>New Document</title><style>.test1 {width: 400px;height: 60px;color: green;font-size: 30px;}.test2 {border: 1px dashed red;}</style></head><body><div class="test1 test2">helloworld</div></body></html>