Форум программистов, компьютерный форум, киберфорум
HTML, CSS
Войти
Регистрация
Восстановить пароль
Карта форума Темы раздела Блоги Сообщество Поиск Заказать работу  
 
Рейтинг 4.67/6: Рейтинг темы: голосов - 6, средняя оценка - 4.67
1 / 1 / 1
Регистрация: 30.03.2013
Сообщений: 14
1

Bootstrap странный баг в ie9

25.06.2015, 17:34. Показов 1203. Ответов 2
Метки нет (Все метки)

Author24 — интернет-сервис помощи студентам
Когда загружаю страничку в ie9 и навожу курсор на сам контент, то все спаны автоматически становятся на всю ширину контейнера- 100%. Если включить фаербаг, то все становиться на свои места. Может кто то сталкивался с подобным..
0
Лучшие ответы (1)
Programming
Эксперт
94731 / 64177 / 26122
Регистрация: 12.04.2006
Сообщений: 116,782
25.06.2015, 17:34
Ответы с готовыми решениями:

очень странный баг IE
Здравствуйте уважаемые формучане! Я тут недавно столкнулся с такой проблемой... Доверстал значит...

Странный баг
Добрый день. Есть код внешенй обработки, который при помощи com объекта обращается из базы...

Странный баг
После проблем с вирусом svchost.exe после перезагрузки Lotus Domino все сервисы nreplica.exe...

Странный баг в Windows 7
Здравствуйте! Каждый день где-то в 21-30 на 1-2 секунды пропадают иконки с рабочего стола и...

2
413 / 378 / 220
Регистрация: 18.07.2014
Сообщений: 1,259
26.06.2015, 11:32 2
IGI66, покажите код
0
1 / 1 / 1
Регистрация: 30.03.2013
Сообщений: 14
26.06.2015, 11:51  [ТС] 3
Лучший ответ Сообщение было отмечено IGI66 как решение

Решение

HTML5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<div id="main-top">
    <div class="header-banner">
        <div class="banner-wrap">
            <div class="full-width-image-text">
                <div class="container row-fluid">
                    <div class="banner-text">
                        <div class="span6">
                            <h1>FX Trading Analysis Seminar</h1>
                            <h2>Ritz Carlton Hotel DIFC,<br>
                                1<sup>st</sup>July 2015, Starting at 10pm
                            </h2>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>
<div id="main">
    <div class="container row-fluid clearfix landing-main-content">
        <h3>Register to confirm your participation</h3>
        <div class="row-fluid clearfix">
            <div class="span6">
                <div id="landing-prime-demo-form" class="lp-form" data-anchor="landing-seminar-reg-form">
                    <div class="lp-iframe-holder">
                        <iframe class="lp-iframe" frameborder="0" align="middle" width="100%" height="100%" marginheight="0" marginwidth="0" allowtransparency="true" scrolling="no" src="/iframe/form-confirm-participation"></iframe>
                    </div>
                </div>
            </div>
            <div class="span6">
                <div class="block-online-trading-market-outlook">
                    <h2>FX Trading Analysis Seminar </h2>
                    <div class="text-holder">
                        <p>Presented by Avramis Despotis, the founder and CEO of Tradepedia. Avramis will guide you through a series of trading scenarios showing how you can develop your trading strategies.You will also learn how to use charts, trends and price patterns in the FX markets environment.</p>
                        <img alt="TradePedia" title="TradePedia" src="/sites/default/files/landing-images/trade-logo.png">
                    </div>
                </div>
            </div>
        </div>
    </div>
    <div class="seminar-date-block">
        <div class="seminar-item full-width">
            <div class="item-info">
                <h3>1<sup>st</sup>July 2015, Starting at 10pm</h3>
                <span>Dubai – Ritz Carlton Hotel DIFC </span>
                <span>United Arab Emirates</span>
            </div>
        </div>
    </div>
    <div class="benefits-holder">
        <div class="benefits">
            <div class="container">
                <div class="benefits-item">
                    <h3 class="title">More information about Forex Trading</h3>
                    <i class="icon-options forex"></i>
                    <a target="_blank" href="/private-clients/trading-products/forex" class="more">Find Out More</a>
                </div>
                <div class="benefits-item">
                    <h3 class="title">More information about CFD Trading</h3>
                    <i class="icon-options cfd"></i>
                    <a target="_blank" href="/private-clients/trading-products/cfds" class="more">Find Out More</a>
                </div>
                <div class="benefits-item">
                    <h3 class="title">Education Materials (Videos and Tutorials)</h3>
                    <i class="icon-options education"></i>
                    <a target="_blank" href="/private-clients/education" class="more">Find Out More</a>
                </div>
            </div>
        </div>
    </div>
</div>
CSS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
body {
    -webkit-text-size-adjust: none;
}
.row-fluid [class*="span"] {
    position: relative;
}
 
.container {
    max-width: 1185px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
#header {
    padding: 0 13px;
}
#header > .container {
    max-width: 1185px;
    padding: 0;
}
#header .logo {
    margin: 0;
}
#header .header-top {
    padding: 11px 0px 22px;
}
/*Banner*/
.header-banner {
    padding: 35px 0 0;
    margin: 0 0 56px;
    position: relative;
    width: 100%;
    height: auto;
    text-align: center;
    height: 322px;
    background: #000 url("/sites/all/themes/adss/images/landing-page/banner-seminar-july.jpg") no-repeat 50% 0;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    color: #fff;
}
.header-banner:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 0;
    width: 100%;
    border-top: 2px solid #89000c;
    border-bottom: 2px solid #1f1f1f;
}
.banner-text {
    text-align: left;
}
.header-banner h1 {
    margin: 0 0 58px;
    font: 48px/54px "source_sans_probold",Arial,Helvetica,sans-serif;
    text-transform: uppercase;
}
.header-banner h2 {
    font-size: 30px;
    line-height: 32px;
}
.header-banner h2 sup {
    font-size: 13px;
}
.landing-main-content {
    padding: 0 0 92px;
}
.landing-main-content h3 {
    font-weight: normal;
    font: 28px/34px Arial,Helvetica,sans-serif;
    color: #737373;
    margin: 0px 0px 33px;
}
 
/*Trading market*/
.block-online-trading-market-outlook {
    background:#F1F1F1 url(/sites/all/themes/adss/images/landing-page/seminar-outlook-bg.png) no-repeat 100% 100%;
    padding: 29px 30px 22px;
    border: 1px solid #B4B4B4;
}
.block-online-trading-market-outlook .text-holder {
    width: 60%;
}
.block-online-trading-market-outlook h2 {
    color: #737373;
    font-weight: normal;
    font:30px/35px Arial, Helvetica, sans-serif;
    margin: 0px 0px 10px;
    max-width: 360px;
    text-transform: uppercase;
}
.block-online-trading-market-outlook p{
    font:15px/27px Arial, Helvetica, sans-serif;
    color: #737373;
    margin: 0px 0px 12px;
}
 
/*Seminar date*/
.seminar-date-block {
    color: #fff;
}
.seminar-date-block .seminar-item {
    position: relative;
    background-image: url(/sites/all/themes/adss/images/landing-page/landing-seminar-uae.jpg);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    background-position: 50% 0;
    width: 100%;
    height: 269px;
    padding: 49px 13px 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.seminar-date-block .seminar-item.full-width .item-info {
    max-width: 1185px;
    margin: 0 auto;
    z-index: 10;
    position:relative;
}
.seminar-date-block .seminar-item:after{
    position: absolute;
    content: '';
    display: none;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url(/sites/all/themes/adss/images/landing-online-trading/seminar-img-hover.png) repeat 0 0;
}
.seminar-date-block .seminar-item:hover:after{
    display: block;
}
.seminar-date-block .seminar-item h3 {
    font-size: 48px;
    line-height: 62px;
    margin: 0;
    z-index: 10;
}
.seminar-date-block .seminar-item h3 sup {
    font-size: 24px;
}
.seminar-date-block .seminar-item span {
    font-size: 36px;
    line-height: 38px;
    display: block;
    z-index: 10;
}
/*Benefits*/
.benefits-holder{
    padding: 0 0 27px;
    background: url(/sites/all/themes/adss/images/landing-online-trading/footer-shadow.png) no-repeat 50% 100%;
}
.benefits{
    padding: 68px 0px 35px;
    overflow: hidden;
    border-top: 1px solid #B4B4B4;
    background: #EFEFEF;
}
.benefits .benefits-item{
    float: left;
    text-align: left;
    padding: 0px 0px 0px 90px;
    position: relative;
    width: 33.3%;
    min-height: 95px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.benefits .benefits-item .title {
    color: #666;
    font:18px/22px Arial, Helvetica, sans-serif;
    padding: 0px 50px 11px 0px;
    margin: 0;
    text-transform: uppercase;
}
.benefits .benefits-item .more {
    padding: 0;
}
.benefits .benefits-item .icon-options{
    display: block;
    font-style: normal;
    position: absolute;
    width: 90px;
    height: 104px;
    left: 0px;
    top: 0px;
}
.benefits .benefits-item .icon-options.forex {
    background: url(/sites/all/themes/adss/images/landing-black-theme/icon-forex-small.png) no-repeat 0 0;
}
.benefits .benefits-item .icon-options.cfd {
    background: url(/sites/all/themes/adss/images/landing-black-theme/icon-cfd-small.png) no-repeat 0 0;
}
.benefits .benefits-item .icon-options.education {
    background: url(/sites/all/themes/adss/images/landing-black-theme/icon-educatio-small.png) no-repeat 0 0;
}
.benefits .benefits-item .more{
    font:16px/16px Arial, Helvetica, sans-serif;
    color: #D30304;
    background: none;
    text-decoration: none;
}
.benefits .benefits-item .more:hover{
    text-decoration: underline;
}
0
26.06.2015, 11:51
IT_Exp
Эксперт
87844 / 49110 / 22898
Регистрация: 17.06.2006
Сообщений: 92,604
26.06.2015, 11:51
Помогаю со студенческими работами здесь

Очень странный баг
Вообщем такая история. Программировал в Visual studio, залез в чужую память и после этого не могу...

Странный баг с сайтом
Заметил у себя странный баг с сайтом Кинопоиск. Иногда он открывается, как и положено (очень...

Странный баг о_О
Доброго времени суток. Итак, сегодня писал программу, которая по вводу n-значного числа n&gt;1 и n&lt;10,...

Странный баг в двумерных массивах
Стоит простая задача: В ручную инициализировать матрицу 2Х2 и вывести её на экран. Но при попытке...


Искать еще темы с ответами

Или воспользуйтесь поиском по форуму:
3
Ответ Создать тему
КиберФорум - форум программистов, компьютерный форум, программирование
Powered by vBulletin
Copyright ©2000 - 2024, CyberForum.ru