Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm studying code that I found on the net and faced problem. When I add text to the main div called content, I get no margins, text is too close to sidebar. How should I fix it? Here's the code:

<html>
<head>
<link rel="stylesheet" type="text/css" href="mystyle.css">
</head>
<body>
    <div id="outer">
        <div id="header"></div>
        <div id="inner">
            <div id="sidebar"></div>  
            <div id="content">
        </div>  
    </div>
</html>

CSS

#outer {width:1000px;margin:0 auto;}
#inner {overflow:hidden;}
#header {min-height:40px;background:#bbb}
#content {width:900;min-height:900px;float:left;background:#ccc;clear:}
#sidebar{width:100px;min-height:250px;float:left;background:#ddd}
share|improve this question
1  
Aren't you missing one closing tag there? – Dharman Jan 19 at 17:51
Might be, but I think there's problem in CSS code. Have any ideas? – user1993303 Jan 19 at 17:53
It also might help us answer your question if you add a link to where you found it. – gary Jan 19 at 18:10
first things first - close the tag! – user1721135 Jan 19 at 18:33

4 Answers

Use padding and/or margins on your content and/or sidebar div in the CSS

http://www.htmldog.com/guides/cssbeginner/margins/

share|improve this answer
I try, but then my whole page mess up. What would you add to code, to make text 50px from the left? – user1993303 Jan 19 at 18:00
Try making the width of the content 850px and putting a left margin of 50px on it – Chemicaloli Jan 19 at 18:19

Have you tried something such as

#content{box-sizing:border-box, width:900;min-height:900px;float:left;background:#ccc; padding:10px;}

Using "box-sizing" should ensure it doesn't mess up your page.

edit: and yeah, close that html, that could really help.

share|improve this answer
box sizing is great but it will fail in older browsers and break the whole layout. – user1721135 Jan 19 at 18:38
True. caniuse.com/css3-boxsizing could be of use to the asker then. – benBecker Jan 19 at 18:51

Don't know what you need exactly. But try to add padding-left or margin-left

#content {width:900;min-height:900px;float:left;background:#ccc;padding-left:20px;margin-left:10px;}
share|improve this answer

Inside the content div add another div and use margins on it.

You can also use a paragraph tag and same use margins on it, this will not break your layout.

Also you are missing a closing tag, this definatly needs to be fixed.

Try:

<html>
<head>
<link rel="stylesheet" type="text/css" href="mystyle.css">
</head>
<body>
    <div id="outer">
        <div id="header"></div>
        <div id="inner">
            <div id="sidebar"></div>  
            <div id="content">
               <div class="box">
                all text and content comes here
                </div>
             </div>
        </div>  
    </div>
</html>

Additional CSS:

.box {
margin:50px;
}
share|improve this answer
I tried everything you told, but my page is still broken or text too close. I think I will just find another sample of similar layout... Thanks your help – user1993303 Jan 20 at 7:18
its not broke you probably just made a mistake see jsbin.com/egiwev/1/edit – user1721135 Jan 20 at 13:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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