Jump to content
  • 0

div'ная верстка


Good Fucking Smile
 Share

Question

Здравствуйте вот решил заняться разработкой сайтов но возникли вопросы, если вы не против то все вопросы я буду задавать в 1 теме!

1 вопрос как сделать 2 блока в контейнере , 1 блок в левой стороне второй по центру , делал это с помощью функции float левый блок получается а вот как сделать по центру не соображу!

вот мой коддинг)))))

index

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<title>Название страницы</title>
<link rel="stylesheet" type="text/css" href="../css/style.css">
</head>
<body>


<div id="gormenu">горизонтальное меню</div>
<div id="logotype">Логотип сайта</div>


<div id="conteiner">


<div id="left">левый блок</div>
<div id="content">центральный блок</div>


</div>
<div id="footer">Подвал сайта</div>

</body>
</html>

файлик css

body {
margin:0px;
padding: 0px;
background: yellow;
}
#gormenu {
margin: 0 auto;
width: 950px;
height: 35px;
background: green;
}
#logotype {
margin: 0 auto;
width: 950px;
height: 200px;
background: black;
}
#conteiner {
margin: 0 auto;
width: 950px;
min-height: 500px;
background: blue;


}
#footer {
margin: 0 auto;
width: 950px;
min-height: 40px;
background: orange;
}
#left {
width:290px;
min-height:400px;
background: orange;
float: left;

}
#content {
width:630px;
min-height:400px;
background: darkorange;

}

Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 0

1. #content {float:right;}

2. #content {

width:630px;

min-height:400px;

background: darkorange;

margin-left:290px;

}

margin-left нужен, чтобы контент не затекал под плавающий блок, если тот короче

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy