Guest User

Untitled

a guest
Dec 14th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. <body>
  2. <p>Это просто какой-то текст</p>
  3. </body>
  4.  
  5. p{
  6. width:100%;
  7. text-align:justify;
  8. }
  9.  
  10. <!DOCTYPE html>
  11. <html>
  12.  
  13. <head>
  14. <title>Scaling text demo</title>
  15. </head>
  16.  
  17. <body>
  18. <svg width="100%" height="100%" version="1.1" viewBox="0 0 100 100"
  19. preserveAspectRatio="none"
  20. xmlns="http://www.w3.org/2000/svg">
  21. <text x="12.5" y="25" font-size="15">Stretch to fit</text>
  22. </svg>
  23. </body>
  24.  
  25. </html>
  26.  
  27. <body>
  28. <p id="myp">Это просто какой-то текст</p>
  29. <style>
  30. #myp{
  31. position: absolute;
  32. left: 0px;
  33. top: 0px;
  34. line-height: 100%;
  35. font-size: 9px;
  36. }
  37. </style>
  38. <script>
  39. function onres(){
  40. var browwidth=document.documentElement.clientWidth;
  41. var myp=document.getElementById("myp");
  42. myp.style.fontSize=browwidth/5+"px";
  43. }
  44. window.onresize=onres;
  45. onres();
  46. </script>
  47. </body>
  48.  
  49. Может это тебе поможет letter-spacing: 11px;
Add Comment
Please, Sign In to add comment