Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS [Solved] H1 text Rotation vertical to horizontal

  • This topic is empty.
Viewing 4 posts - 16 through 19 (of 19 total)
  • Author
    Posts
  • #194323
    analis
    Participant

    This i s teh complete page

    <html>
    <head>
    <meta name=”viewport” content=”width=device-width; initial-scale=1.0″ />
    <style>
    *, *:before, *:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;}

    body{margin:0 auto;font-size:0.9em;}

    #content{width:100%;text-align:center;color:#000;padding:16px 5px 0px 5px;}
    #content h1{font-size:1.1em;margin:0;font-weight:bold;}

    .title{width:100%;text-align:left;margin-top:5px;}
    </style>
    </head>

    <body>

    <h1>Informazioni su come stampare una pagina di prova per verificare il corretto funzionamento della stampante</h1>

    </body>
    </html>

    #194348
    Shikkediel
    Participant

    I can’t imagine since there’s no element #content inside the HTML.
    Still it’s somewhat of an enigma what you are trying to achieve here.
    Adding <h1> tags will not ‘widen’ anything, just make the text larger.

    #194364
    analis
    Participant

    <html>
    <head>
    <meta name=”viewport” content=”width=device-width; initial-scale=1.0″ />
    <style>
    *, *:before, *:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;}

    body{margin:0 auto;font-size:0.9em;}

    #content{width:100%;text-align:center;color:#000;padding:16px 5px 0px 5px;}
    #content h1{font-size:1.1em;margin:0;font-weight:bold;}

    .title{width:100%;text-align:left;margin-top:5px;}
    </style>
    </head>

    <body>

    < div id=content >

    < div class=title>
    <h1>Informazioni su come stampare una pagina di prova per verificare il corretto funzionamento della stampante</h1>

    </ div >
    </ div >
    </body>
    </html>

    #194452
    analis
    Participant

    the problem was that I had an old version of google chrome .

    Thank You ^ ^

Viewing 4 posts - 16 through 19 (of 19 total)
  • The forum ‘CSS’ is closed to new topics and replies.