切换布局
显示结果
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>迹忆客(jiyik.com)</title> <style> #myid { background-color: blue !important; } .myclass { background-color: gray !important; } p { background-color: red !important; } </style> </head> <body> <p>段落中的一些文本内容!!!</p> <p class="myclass">段落中的一些文本内容!!!</p> <p id="myid">段落中的一些文本内容!!!</p> </body> </html>