/ Published in: CSS
This appears to be the easiest way to create vertical text (that isn't rotated) with CSS.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<!DOCTYPE html> <html> <head> <meta charset=utf-8 /> <title>JS Bin</title> <style> h1 { width: 1em; font-size: 40px; letter-spacing: 40px; /* arbitrary large letter-spacing for safety */ } </style> </head> <body> <h1> N e t t u t s </h1> </body> </html>