I’ve figured out everything except the corner numbers. I don’t know how to place characters in the corner of a cell, and even if I do, I don’t know how to make them stay visible, since I hide the crossword letter until the answer is guessed.
This is basically telling all the text in the .corner class to have a fixed position, be -5 pixels away from the corner, have a size of 12 pixels, and be visible.
Then every corner number gets the class .corner in Step 4.
.corner {position: absolute; top: -5px; left: -5px; font-size: 12px; visibility: visible}
This is basically telling all the text in the .corner class to have a fixed position, be -5 pixels away from the corner, have a size of 12 pixels, and be visible.
Then every corner number gets the class .corner in Step 4.
So...yah.
but can i ask you where did you find .corner {position: absolute; top: -5px; left: -5px; font-size: 12px; visibility: visible}