Jump to content

How to break a heading


newcoder1010

Recommended Posts

Example of 'dsonesuk's suggestion:

	<!DOCTYPE html><html lang="en"><head><title> Test Page </title>
<meta charset="UTF-8">
	<meta name="viewport" content="width-device-width,initial-scale=1.0, user-scalable=yes"/>
	<!-- link rel="stylesheet" href="common.css" media="screen" -->
<style>
 h1 { width: 20em; margin: 0 auto;
      text-align: center;
      background: wheat; color: magenta;
    }
</style>
	</head><body>
	<h1> We buy <br> cars city</h1>
	<script>
	</script>
	</body></html>

BTW, welcome to the forums.

Edited by JMRKER
Link to comment
Share on other sites

I usually give the tag a max-width in ems so that regardless of font size it always breaks at the same place. This solution requires no change to the HTML.

Add text-align: center and a left and right margin of auto to keep it all centered.

Link to comment
Share on other sites

Here is 'Ingolme's suggestion in a test script.  Very similar to original but without <br>

	    <!DOCTYPE html><html lang="en"><head><title> Test Page </title>
<meta charset="UTF-8">
    <meta name="viewport" content="width-device-width,initial-scale=1.0, user-scalable=yes"/>
    <!-- link rel="stylesheet" href="common.css" media="screen" -->
<style>
 h1 {
/*      width: 20em;  /* single line */
      margin: 0 auto;
      text-align: center;
      background: wheat; color: magenta;
    }
 h1.vertLine { width: 3em; }    /* single vertical line */
 h1.twoLines { width: 5em; }    /* two horiz. lines */
</style>
    </head><body>
    <h1 class='vertLine'> We buy cars city</h1>
<hr>
    <h1 class="twoLines"> We buy cars city</h1>
<hr>
    <h1> We buy cars city</h1>
<hr>
    <script>
    </script>
    </body></html>
	

 

Link to comment
Share on other sites

  • 2 weeks later...
  • 1 month later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...