编辑你的代码:
<!DOCTYPE html> <html> <body> <p style="background-color:#FFFF00"> 使用十六进制值设定的颜色 </p> <p style="background-color:rgb(255,255,0)"> 使用rgb值设定颜色 </p> <p style="background-color:yellow"> 使用颜色名称设定颜色 </p> </body> </html>
查看结果:
phpxuexi.net
- 亲自试一试