Advertisement
Guest User

Sachovnice - edit

a guest
Nov 19th, 2015
343
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.61 KB | None | 0 0
  1. <style>
  2. #herni_pole {
  3.     margin-right: auto;
  4.     margin-left: auto;
  5.     width: 480px;
  6.     height: 480px;
  7.     border: 5px solid #000;
  8.     text-transform: uppercase;
  9.     font-weight: bold;
  10. }
  11.  
  12. .bilej, .cernej {
  13.     float: left;
  14.     width: 60px;
  15.     height: 60px;
  16. }
  17.  
  18. .bilej {background-color: #fff; color: #000;}
  19. .cernej {background-color: #000; color: #fff;}
  20. </style>
  21.  
  22. <div id="herni_pole">
  23.     <?php
  24.     $vyska = 8;
  25.     $sirka = 8;
  26.  
  27.     for($y=$vyska; $y>0; $y--) {
  28.         for($x=0; $x<$sirka; $x++) {
  29.             echo (($x+$y)%2==1) ? "<div class='bilej'>".chr($x+97).$y."</div>" : "<div class='cernej'>".chr($x+97).$y."</div>";
  30.         }
  31.     }
  32.     ?>
  33. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement