try adding in the css:
br {
padding-bottom: 20px;
}
Main Topics
Browse All TopicsI have mulitple lines texts. And I have to use <br /> to seperate the lines. for example
first line html first line <br /> second line
second line
How could I modify the first and second line space? so that I could get following lines:
first line Same html as above.
second line
CSS is prefered.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
The title should be how to change the default line space specific br tag. Both of mentioned above does not work.
My codes are as follows: Notice I onll need to change specific br's default line space.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtm
<html>
<head>
<title></title>
<style type="text/css">
.paddingTop{padding-top:0.
p.small{line-length=90%}
br{padding-bottom: 50px}
.test{float:left;display:b
label{float:left; display:block;width:400px;
.testclass{float:left; display:block;width:400px;
</style>
</head>
<body>
<form >
<p class="small">
Some heading<br/>
<div class="paddingTop">
<div class=test><input type="checkbox" /></div><div class="testclass">Yes Please, and not go </div><br/><br/> <!-- this two br's space should be smaller -->
<div class=test><input type="checkbox" /></div><div class="testclass">Text here should be ok to go onto two lines and not go under the text box</div><br/></br>
</div>
</p>
some text
</form>
</body>
</html>
I finally solve by myself. I will not give you any points. Since your answer is wrong.
<html>
<head>
<title></title>
<style type="text/css">
div.padding{padding-top:0.
br.small{line-height: 15px}
.test{float:left;display:b
.testclass{float:left; display:block;width:400px;
</style>
</head>
<body>
<form >
Some heading
<div class="padding">
<div class=test><input type="checkbox" /></div><div class="testclass">Yes Please, and not go </div><br class="small"/><br class="small"/>
<div class=test><input type="checkbox" /></div><div class="testclass">Text here should be ok to go onto two lines and not go under the text box</div><br class="small"/><br class="small"/>
</div>
some text
</form>
</body>
</html>
Business Accounts
Answer for Membership
by: ali_kayahanPosted on 2008-01-28 at 06:08:37ID: 20758953
have a look at ;
<style type="text/css">
p.small {line-height: 90%}
p.big {line-height: 200%}
</style>