2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ドットインストール PHP学習 ビンゴゲーム 学び

Posted at

どっとインストールで学んだこと メモ

・PHP 学習時のビンゴゲームを学ぶ
学習時、気づいた点、コメントを記載。
コメントを記載することで、ソースの中身を理解するのが目的

以下、ビンゴゲーム内容

BINGO!
B I N G O
= h($nums[$j][$i]); ?>

CSSファイル

body {
font-family: Arial, sans-serif;
text-align: center;
font-size: 16px;
}

#container {
margin: 0 auto;
width: 322px;
}

td, th {
width: 60px;
height: 45px;
}

td {
background: #F06292;
color: #fff;
}

th {
color: #F06292;
font-size: 22px;
}

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?