12345678910111213141516171819202122232425262728293031 |
- table{
- border-collapse: collapse;
- }
- td, img, tr{
- border-collapse: collapse;
- margin: 0px;
- padding: 0px;
- border: none;
- position: relative;
- }
- img{
- vertical-align:bottom
- }
- #game{
- position: absolute;
- top: 50%; left: 50%;
- transform: translate(-50%, -50%);
- }
- #hud{
- position: absolute;
- z-index: 10;
- margin-top: 1.5em;
- margin-left: 1.5em;
- font-size: 2em;
- font-style: arial;
- color: white;
- }
|