How can I add numbers to the corners of cells

Submitted by RhMalik03 on November 27, 2025
Similar to this quiz

Crossword Countries

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.

3 Comments
+2
Level 61
Nov 27, 2025
If you copy the quiz you can see that Fuse uses a little code snippet:

.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.

+2
Level 48
Nov 27, 2025
thank you

but can i ask you where did you find .corner {position: absolute; top: -5px; left: -5px; font-size: 12px; visibility: visible}

+3
Level 61
Nov 27, 2025
You can put it in the quiz description so it runs when you play the quiz