Bonjour à tous,
J'aimerais savoir comment ecrire du texte verticalement en HTML ?
Car je ne vois pas comment
Merci pour votre aide,
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<script type="text/javascript" src="http://code.jquery.com/jquery-1.8.1.min.js"></script>
<style>
p {background-color: yellow;
width: 0.5em;
height : auto;
overflow: hidden;
word-wrap:break-word ;}
</style>
</head>
<body>
<p>Texte</p>
</body>
</html>
Il faut juste gérer la largeur de ta div et c'est tout (j'ai un fond jaune pour que cela se voit mieux).