I am looking to enhance the appearance of text with a thick outline. After coming across a trick, I found the following code snippet:
text-shadow:
-1px -1px 0 #00f,
1px -1px 0 #00f,
-1px 1px 0 #00f,
1px 1px 0 #00f;
However, I noticed that this only creates a 1px outline, which may not be sufficient. Additionally, the outline appears jagged and broken, especially on larger fonts. I am seeking advice on how to achieve a thicker, smoother outline of 2 or 3px. Any suggestions involving CSS, JS, or jQuery plugins would be greatly appreciated.