Jump to content
  • 0

контент, который тянется до определенного разрешения, а потом центрует


Sanguis
 Share

Question

проблема вот в чем: контент сайта должен тянуться с разрешения 1024*768 до 1024*1280. в ширь. если разрешение больше, он должен останавливать свою тянучесть и центрироваться.

сейчас на большом разрешении (1600*1200) в опере и в ие он тянучесть останавливает, но жмется влево. в огнелисе тянется на всю ширину и никакой max-width его не останавливает. а также такой код его не берет:

body { 
margin: 0 auto;
padding: 0;
font-family: Georgia;
font-size: 100.01%;
font-weight:normal; }

.all{
width: expression(document.body.clientWidth < 1240 ? "100%" : "1240px");
max-width:1240px;
min-width:1000px;
}

можно через жабаскрипт еще что-нить добавить, чтобы было как надо? если да, то что?

ЗЫ: в проблемы верстки плиз не посылайте, там уже была, послали сюда.

Link to comment
Share on other sites

11 answers to this question

Recommended Posts

  • 0

<!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" xml:lang="ru" lang="ru">
<head>
<title>CSS Layout 3</title>
<link rel="stylesheet" type="text/css" href="default.css" />
<style type="text/css">
#con {background: #999; height: 500px;margin: 0 auto;
padding: 0;
font-family: Georgia;
font-size: 100.01%;
font-weight:normal;
max-width:800px;
min-width:200px;
width: expression(document.body.clientWidth > 800 ? "100%" : "800px");}
</style>
</head>
<body>
<div id="con">
</div>
</body>
</html>

сделате контейнер. В него поместите то что вам надо. С body работать не будет

Link to comment
Share on other sites

  • 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>max-center</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />
</head>
<body>
<div style="width: 100%; text-align: center;">
<div style="border: 1px solid #000; max-width: 400px; margin: 0 auto; width: expression(document.body.parentNode.offsetWidth>400?'400px':'auto');">
test
</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