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.
Здравствуйте, подскажите какой тег использовать для увеличения значения, пример на картинке.
Вроде, про такой тег я слышала. Если есть тег прогресс бар, значит и такое должно быть.
Question
Justtie
Прочитал статью http://www.xiper.net/collect/html-and-css-tricks/glyuki-brauzerov/IE/z-index-ie6-7.html
Не совсем понял как решить проблему для IE7
Есть:
<div class="header">
<div class="menu">111</div>
</div>
<div class="content">
<div class="article">1111</div>
<div>
.headaer {
[...]
position: relative;
z-index: 2;
}
.menu {
[...]
position: absolute;
z-index: 1000;
}
.content {
[...]
position: relative;
z-index: 1;
}
.article {
[...]
position: absolute;
z-index: 1000;
}
То в такой ситуции article не залезит на headaer, а нужно что б дивы с position: absolute; залазили на дивы position: relative;
Как тогда решить эту проблему без дж?
Edited by JusttieLink to comment
Share on other sites
0 answers to this question
Recommended Posts
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.