Jump to content
  • 0

3 блока разъезжаются :(


bubl
 Share

Question

Товарищи, помогите пжалста новичку... вобщем как сделать чтобы 3 блока встали в 1 ряд и не разъезжались? у меня 3 картинки, я их сую в 3 дива, а вот дальше разваливается....как не игрался с позиционированием не получается...нужно поставить в 1 ряд (menu, content,block) это должно быть как то легко, но уже даже не знаю как...вот собственно код:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Untitled</title>
</head>

<style type="text/css">
body {margin:0px}
#bgr {background-image:url("img/bgr.jpg"); height:100%; width:100%; background-repeat:no-repeat;}
#shapka {background-image:url("img/shapka.jpg"); width:1024px; height:102px;}
#menu {background-image:url("img/menu.jpg"); width:353px; height:666px; float:left}
#content {background-image:url("img/content.jpg"); width:537px; height:615px;}
#block {background-image:url("img/block.jpg"); width:134px; height:666px;}
#podval {background-image:url("img/podval.jpg"); width:537px; height:51px;}
</style>


<body>


<div id="bgr" align="center">
<div id="shapka"></div>
<div id="menu"></div>
<div id="content"></div>
<div id="block"></div>
<div id="podval"></div>

</div>



</body>
</html>

Edited by bubl
Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0
<style>
body { margin: 0; padding: 0; }
#shapka { width: 100%; }
#menu { width: 20%; }
#content { width: 60%; }
#block { width: 20%; }
#podval { width: 100%; }
#menu, #content, #block { float: left; }
.clear { clear: both; }
</style>

<body>
<div id="bgr">
<div id="shapka"></div>
<div id="menu"></div>
<div id="content"></div>
<div id="block"></div>
<div class="clear"></div>
<div id="podval"></div>
</div>
</body>

Link to comment
Share on other sites

  • 0

Тут не резиновые блоки нужны, на сколько я понял...

вот недавно писал:

<!DOCTYPE HTML PUBLIC  "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title></title>

<style type="text/css">

* {margin: 0; padding: 0;}

html, body {
height:100%;
width:100%;
}

img {
border: none;
}

.blockleft {
text-align: left;
margin: 0 0 20px 0;
background: #33CC66;
overflow: hidden;
zoom: 1;
}

.innerblock {
float: left;
display: inline; /* for ie: double margins fix */
border: black 1px dotted;
white-space: nowrap;
text-align: center;
margin: 5px 0 5px 10px;
padding: 5px;
background: #FFCC66;
}

</style>

</head>
<body>
<div class="blockleft">
<div class="innerblock"><img src="/01.jpg" width="70" height="70">
<p><strong>Имя</strong><br><i>текст, текст</i></p></div>
<div class="innerblock"><img src="/02.jpg" width="70" height="70">
<p><strong>Ииимммяяя</strong><br><i>текст</i></p></div>
<div class="innerblock"><img src="03.jpg" width="70" height="70">
<p><strong>Иммя</strong><br><i>текст</i></p></div>
<div class="innerblock"><img src="04.jpg" width="70" height="70">
<p><strong>Имя</strong><br><i>текст, текст</i></p></div>
<div class="innerblock"><img src="05.jpg" width="70" height="70">
<p><strong>Имя</strong><br><i>текст, текст, текст</i></p></div>
<div class="innerblock"><img src="06.jpg" width="70" height="70">
<p><strong>Имя</strong><br><i>текст</i></p></div>
</div>
<div class="blockleft">
<p>Дальше текст разный и все такое</p>
</div>
Дальше ещё и ещё!
</body>
</html>

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