<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
<style>
p#text {
display: inline-block;
transform: scale(1, 3);
-webkit-transform: scale(1, 3);
-moz-transform: scale(1, 3);
-o-transform: scale(1, 3);
transform-origin: 0% 70%;
}
p {
display: inline;
}
</style>
</head>
<body>
<p id="text">A vertically stretched text</p>
</body>
</html>