Jump to content
  • 0

баг с col в Opera


Быколай
 Share

Question

Наткнулся на такую проблему. Использую col:nth-child. Везде всё в порядке, а в опере, почему-то, к первому col применяется стили от второго, и так далее со смещением :unsure:

код под спойлером.


<style>
table.releco col:nth-child(1){
width: 355px;
}
table.releco col:nth-child(2){
width: 75px;
}
table.releco col:nth-child(3){
width: 30px;
}
table.releco col:nth-child(4){
width: 150px;
}
table.releco col:nth-child (5){
width: 150px;
}
table.releco col:nth-child (6){
width: 150px;
}
table.releco col:nth-child (7){
width: 40px;
text-align: center;
}
</style>

<table class="releco" style="width: 960px;">
<caption>Solid state relay</caption>
<col/><col/><col/><col/><col/><col/><col/>
<thead>
<tr>
<th>Применение</th>
<th>Типы</th>
<th>База</th>
<th>Контакты</th>
<th>Коммутирующая способность AC</th>
<th>Коммутирующая способность DC </th>
<th>Типы колодок</th>
</tr>
</thead>
<tbody>
<tr>
<th colspan="7"><div align="left">Серия CSS</div></th>
</tr>

<tr>
<td>Твердотельное реле AC, Мгновенное переключение</td>
<td>CSS-AC</td>
<td><img src="/images/releco/i/c10.png" alt="" /></td>
<td>
<img src="/images/releco/i/css-ac.png" alt="" />
</td>
<td>3 A / 250 V</td>
<td> </td>
<td>S10</td>
</tr>
</tbody>
</table>

или тут http://jsfiddle.net/dE6s4/

Версия: 11.51, насколько знаю должна хорошо поддерживать это свойство и использованные тэги.

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Никакого бага нет.

1) открываем фаербаг и смотрим:

<table class="releco" style="width: 960px;">
<caption>Solid state relay</caption>
<colgroup>
<col> <!-- 1st child -->
<col>
<col>
<col>
<col>
<col>
<col>
</colgroup>

2) Открываем Оперу и смотрим:

<table class="releco" style="width: 960px;">
<caption>Solid state relay</caption> <!-- 1st child -->
<col/> <!-- 2nd child -->
<col/>
<col/>
<col/>
<col/>
<col/>
<col/>

Варианты решения:

1) Явно добавить colgroup, к слову в Опере 12 он уже проставляется автоматически также как и ФФ

2) Использовать :nth-of-type

  • Like 2
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