Something in the lines of this
I want the border to be around text, but also table cells like you were doing a tic/tac/toe board
thanks
Something in the lines of this
I want the border to be around text, but also table cells like you were doing a tic/tac/toe board
thanks
I believe what you are showing there is a text-shadow.
#element {
color: yellow;
text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black; }
You could basically use that same code for your tic-tac-toe board. Hope that helps.
You will need to create several text-shadows. See this for example:
text-shadow: 3px 3px #F27405, -3px -3px #F27405, 3px -3px #F27405, -3px 3px #F27405;