Jump to content
  • 0

Значение отступов взависимости от разрешения.


botan
 Share

Question

Подскажите, можно ли как нибудь так прописать в css чтобы значение отступов для браузера различалось при разных разрешениях монитора,

Например: чтобы для 800х600 равнялось нулю, а для 1024х768 и выше = 3%.

Или без скриптика тут не обойтись?

Link to comment
Share on other sites

10 answers to this question

Recommended Posts

  • 0

Да у меня и так все резиновое) Просто при большом разрешении сайт лучше смотриться с отступами по бокам, но для 800х600 это негодиться , пропадает итак драгоценное место. Вот думаю как бы это реализовать?

Link to comment
Share on other sites

  • 0

для ИЕ можно сделать исключение. чтото в роде

function bagIE(){
if(navigator.appName == "Microsoft Internet Explorer") {
if(document.body.clientWidth < "какого-то значения") {
document.getElementById('какой-то элемент').style.width = "какое-то значениеpx"
}else{
if(document.body.clientWidth > "то же значение")
document.getElementById('тот же элемент').style.width = "auto"
}
}
}

за был про ХкодеЪ Х.кодеЪ :D

Link to comment
Share on other sites

  • 0
Начните с вопроса есть ли в CSS вообще возможность определить разрешение монитора и тем самым ответите на свой вопрос :D

С помощью expression можно выражения писать прямо в css

Почитайте например - http://xhtml.ru/2005/06/11/max-width/

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