Jump to content
  • 0

проблема с min-width


musulman
 Share

Question

посмотрите ставлю min-width: 1000px; работает везде кроме ие прописываю для ие

width: expression(document.body.clientWidth > 990 ? "990px" : "990px"

ие становится вот что происходит с ие везде кроме ие нормально

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0
посмотрите ставлю min-width: 1000px; работает везде кроме ие прописываю для ие

width: expression(document.body.clientWidth > 990 ? "990px" : "990px"

ие становится вот что происходит с ие везде кроме ие нормально

Попробуйте начать с расстановки запятых.

Link to comment
Share on other sites

  • 0
много ругани в личных сообщениях.

Тебе личиться нужно с такой неадекватной реакцией. Что уж поделать если твой вопрос невозможно разобрать из-за обилия пунктуационных ошибок.

Вот тебе ответ и вали отсюда.

<style>
body {
padding:0; margin:0;}
div {
min-width: 500px;
width: expression(document.body.clientWidth < 500 ? "500px" : "100%");
background: red;}
</style>
<div>test</div>

Зы. Я не урод, я как раз красавик.

Link to comment
Share on other sites

  • 0

По поводу expression:

в варианте homm c большой вероятностью возможно подвисание IE если ресайзить окошко туда-сюда в ручную.

Вот такой вариант работает увереннее:

width:expression((document.documentElement.clientWidth || document.body.clientWidth) < 500 ? "500px" : "auto");

Плюс ко всему придется использовать html, а не xhtml, в котором так же IE виснет при ресайзе.

З.Ы. самому тут впервые понадобилась данная фишка, пришлось разбираться с глюками

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