Abstract: practice1实战二改进版
根据页面的行数,生成一个不同颜色的页面,0-3红色背景,4-6蓝色背景,7-9绿色背景,10-12黑色背景,13-15紫色背景,超过为白色。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
| <html> <head> <title>Line Color</title> <style> ul{ list-style-type: none; margin: 0; padding: 0; } </style> </head> <body> <?php $color=""; echo "<ul>"; for($i=1; $i<=15; $i++){ if(0<=$i && $i<=3){ $color="red"; } elseif(4<=$i && $i<=6){ $color="yellow"; } elseif(7<=$i && $i<=9){ $color="blue"; } elseif(10<=$i && $i<=12){ $color="pink"; } elseif(13<=$i && $i<=15){ $color="green"; } echo "<li style=\"background:$color; width=200px;color: $color\"> </li>"; } echo "</ul>"; ?> </body> </html>
|
效果如下: