Jump to content
  • 0

Блоки в IE прыгают на новую строку?


Victor_One
 Share

Question

Здравствуйте! Подскажите кто-нибудь пожалуйста?

Такой код отображается по разному.

В IE блоки прыгают на новую строку, при уменьшении размера окна.

Что можно сделать, чтобы они стояли неподвижно?

.news{
height: 272px;
width:190px;
float:left;
background-color:red;
}
.content_menu{

width: 660px;
background-color:green;
}
.text_block{

float: none;
background-color:#333;
width: 750px;
height: 500px;}

<div class="news">dfgdgfsd  adf ad fasdif aisudfo aiu</div>

<div class="content_menu">dfgdgfsd <h1>При уменьшении окна этот блок съезжает вниз.</h1> uhaifu haiufh aiue fau ef</div>

<div class="text_block">dfgdgfsd adf ad fasdif aisudfo a<h1>B этот блок тоже съезжает вниз.</h1></div>

Заранее спасибо!

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

вроде так

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">

<head>
<title></title>
<style type="text/css">
/*<![CDATA[*/
html, body {
margin: 0;
padding: 0;
color: #fff;
font: 10px Verdana, Arial, Helvetica, sans-serif;
}
h1 {
font-size: 16px;
margin: 0px;
}
#carrier {
float: left;
width: 100%;
background-color: #404040;
}
.news {
width: 190px;
margin: 3px;
padding: 5px;
border: 1px solid gray;
float: left;
}
.menu, .text {
border-bottom: 1px dotted gray;
margin: 3px 3px 3px 219px;
}
/*]]>*/
</style>
</head>

<body>
<div id="carrier">
<div class="news">
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diem nonummy nibh euismod tincidunt ut lacreet dolore magna aliguam erat volutpat.</p>
</div>
<div class="menu">
<h1>При уменьшении окна этот блок съезжает вниз.</h1>
</div>
<div class="text">
<h1>B этот блок тоже съезжает вниз.</h1>
</div>
</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