What Is The Alternative To
If I Want To Control The Height Between ...

    1. Home
    2. Questions
    3. Tags
    4. Users
    5. Companies
    6. Labs
    7. Jobs
    8. Discussions
    9. Collectives
    10. Communities for your favorite technologies. Explore all Collectives

  1. Teams

    Ask questions, find answers and collaborate at work with Stack Overflow for Teams.

    Try Teams for free Explore Teams
  2. Teams
  3. Ask questions, find answers and collaborate at work with Stack Overflow for Teams. Explore Teams

Collectives™ on Stack Overflow

Find centralized, trusted content and collaborate around the technologies you use most.

Learn more about Collectives

Teams

Q&A for work

Connect and share knowledge within a single location that is structured and easy to search.

Learn more about Teams

Get early access and see previews of new features.

Learn more about Labs What is the alternative to <br /> if I want to control the height between lines? Ask Question Asked 12 years, 5 months ago Modified 2 years, 9 months ago Viewed 112k times 30

In following example:

Line1 <br /> Line2

I'm using <br /> to force Line2 to go to next line, but as far as I know there is no cross browser friendly way of setting the height of br. What is an alternative method I could use?

Share Improve this question Follow edited Jun 12, 2012 at 12:01 James Allardice's user avatar James Allardice 166k22 gold badges334 silver badges315 bronze badges asked Jun 12, 2012 at 12:00 DavidW's user avatar DavidWDavidW 5,11914 gold badges47 silver badges70 bronze badges 5
  • 1 why did u exclude to wrap the text in several <p /> elements? – Kralizek Commented Jun 12, 2012 at 12:03
  • "there is no cross browser friendly way of setting the height of br" That's because <br> doesn't have any height. It's just a command to create a new line. – Cthulhu Commented Jun 12, 2012 at 12:05
  • Use padding, margins or line height. – SVS Commented Jun 12, 2012 at 12:05
  • 1 are the Line1, Line 2 etc connected? You might be better with a <ul> & <li> tag if there is a semantic link between the Lines – atmd Commented Jun 12, 2012 at 12:06
  • most answers are correct, it depends on the context of the question – Stuart Commented Jun 12, 2012 at 12:07
Add a comment |

7 Answers 7

Sorted by: Reset to default Highest score (default) Trending (recent votes count more) Date modified (newest first) Date created (oldest first) 30

Use differents blocks :

<p>Line1</p> <p>Line2</p> Share Improve this answer Follow answered Jun 12, 2012 at 12:03 GuillaumeS's user avatar GuillaumeSGuillaumeS 1,6781 gold badge15 silver badges15 bronze badges Add a comment | 11

Normally, using <br /> is old way of breaking a line. You should use <p>, <div> or some block level elements and give them top or bottom margins.

p { margin-top:5px; margin-bottom:5px } Share Improve this answer Follow answered Jun 12, 2012 at 12:04 Ashwin's user avatar AshwinAshwin 12.4k22 gold badges84 silver badges119 bronze badges Add a comment | 5

Using CSS you can control the line-height property of any element.

someElement { line-height:12px; }

Now you may simply set this for an element, or use it on the entire HTML to provide uniformity across the document. This is safe, cross-browser compatible and easy to use.

Share Improve this answer Follow edited Jun 12, 2012 at 12:11 thirtydot's user avatar thirtydot 228k49 gold badges392 silver badges353 bronze badges answered Jun 12, 2012 at 12:01 Digitalis's user avatar DigitalisDigitalis 5702 silver badges12 bronze badges 0 Add a comment | 3

You can use css line-height property along with <br/> tag to control spacing between lines.

<style> .small { line-height:100px; } </style> <p class="small"> This is a paragraph with a smaller line-height.<br /> This is a paragraph with a smaller line-height.<br /> This is a paragraph with a smaller line-height.<br /> This is a paragraph with a smaller line-height.<br /> </p> Share Improve this answer Follow answered Jun 12, 2012 at 12:06 Ravi Jain's user avatar Ravi JainRavi Jain 1,4822 gold badges17 silver badges41 bronze badges Add a comment | 2
  1. I add a <div>, best way for me, with CSS margin. Or,
  2. The <p> tag.
Share Improve this answer Follow answered Dec 18, 2014 at 21:24 Syed Priom's user avatar Syed PriomSyed Priom 1,9971 gold badge21 silver badges22 bronze badges Add a comment | 1

Use padding & / or margin css attributes.

Share Improve this answer Follow answered Jun 12, 2012 at 12:02 yogi's user avatar yogiyogi 19.5k13 gold badges64 silver badges93 bronze badges Add a comment | 0

You can add a <div> like this

<div style="height: [put your height here]; display: block;"></div>

Seems to work for me, as shown here:

<span>This is the previous line!</span> <div style="height: 50px; display: block;"></div> <span>This will be 50 pixels below the previous line.</span>

You can even use a span! <span>This is the previous line!</span> <span style="height: 50px; display: block;"></span> <span>This will be 50 pixels below the previous line.</span>

Share Improve this answer Follow edited Aug 22, 2021 at 21:39 answered Aug 22, 2021 at 21:32 Missing User's user avatar Missing UserMissing User 1117 bronze badges Add a comment |

Your Answer

Reminder: Answers generated by artificial intelligence tools are not allowed on Stack Overflow. Learn more

Thanks for contributing an answer to Stack Overflow!

  • Please be sure to answer the question. Provide details and share your research!

But avoid …

  • Asking for help, clarification, or responding to other answers.
  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.

Draft saved Draft discarded

Sign up or log in

Sign up using Google Sign up using Email and Password Submit

Post as a guest

Name Email

Required, but never shown

Post Your Answer Discard

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Not the answer you're looking for? Browse other questions tagged or ask your own question.

  • The Overflow Blog
  • We'll Be In Touch - A New Podcast From Stack Overflow!
  • The app that fights for your data privacy rights
  • Featured on Meta
  • More network sites to see advertising test
  • We’re (finally!) going to the cloud!
  • Call for testers for an early access release of a Stack Overflow extension...
Visit chat

Linked

-5 Alternative of using <br> in several lines 6 Cursor in contenteditable not behaving properly in Chrome 0 Another way of line break through css without using br? 23 Make new line without using <br> in HTML 4 How to set the space between lines in a div without setting line height 0 HTML:Adjust height between br element 5 Controlling the line-height of a <br> tag within a heading tag? 0 Why the <br> element has more height than line-height 7 How to adjust the amount of space between two lines at each <br> in CSS? 2 HTML/CSS -lineheight is affecting <br> tag? 1 how do you shorten a breaks line height in html? 0 How to use 'line-height' without increasing size of <span> 1 Control the space the <br> tag gives html/css

Hot Network Questions

  • When was Superman controlled by rock music?
  • Dominant chord -- is its definiton super flexible in blues or I spotted a mistake?
  • front derailleur cable routing
  • Help me identify this chip (8 pins)
  • Can a signatory country to the International Criminal Court withdraw to evade obligation to comply with an issued order?
  • Using a platinum loop to light a gas stove in Oliver Sacks's memoir
  • logical error probability independent from distance in STIM default repetition code
  • Given extensive protections in modern operating systems that make buffer overflow exploits unfeasible, should I even bother studying these?
  • Why doesn't Hotelling's law seem to apply to the stances taken by political parties?
  • Is vertex mass the mass of the whole object?
  • A linked list in C, as generic and modular as possible, for my personal util library
  • US jurisdictions
  • Just some ordinary layers
  • Polynomial.java - A tiny Java library for dealing with polynomials with double coefficients
  • How to write a cooking scene without it sounding like a recipe?
  • How did the Dutch Republic get sufficient timber to build its navies?
  • Is is plausible that we could have neuronal maps of human brains without mind uploading being possible?
  • Why does glm in R with family binomial(link="log") sometimes require start values?
  • Unconvinced by a standard step in deriving Maxwell-Ampère's law from Biot and Savart's law
  • Chain skipping when pedaling hard
  • Is it potentially dangerous to run a bash script with sh?
  • Girls and boys parades
  • How far above a forest fire or conflagration would you need to be, to not burn alive?
  • What does the absence of a ground state physically mean?
more hot questions Question feed Subscribe to RSS Question feed

To subscribe to this RSS feed, copy and paste this URL into your RSS reader.

lang-html

Từ khóa » Html Br Alternatives