Cascading styles
Cascading style
The code is as follows:
<!doctype html> <html> <head> <meta charset="UTF-8"> <title>测试层叠性</title> <style type="text/css"> div{ color:red; } div{ background-color:yellow; } div{ font-size:24px; } div{ background-color:green; } </style> </head> <body> <div>这是一个div元素</div> </body> </html>
The same attributes at the back will overwrite the previous ones .
The running results are as follows: