My ultimate goal is to make an effect like this: http://codepen.io/yoksel/pen/XJbzrO (bottom of page). But I can't even get this simple text outline to work.
<!DOCTYPE html>
<html lang = "en-US">
<head>
<title> Test </title>
<style>
#title {
color: blue;
stroke: red;
stroke-width: 2px;
}
</style>
</head>
<body>
<h1 id="title">This is some text</h1>
</body>
</html>
The solution must work across all major browsers. I'm using Google Chrome. If the stroke can't be done this way, please don't suggest using shadows. I can't turn shadows into the desired effect.