-1

Something in the lines of this

http://a.dryicons.com/images/icon_sets/colorful_stickers_part_2_icons_set/png/128x128/sterling_pound_currency_sign.png

I want the border to be around text, but also table cells like you were doing a tic/tac/toe board

thanks

Heather McVay
  • 939
  • 3
  • 15
  • 31

2 Answers2

1

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.

Jesse Hernandez
  • 307
  • 2
  • 15
1

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;

http://jsfiddle.net/U3Fkc/

Daniel Schwarz
  • 284
  • 1
  • 10