このコードはChoremeとFirefoxで動作します。しかし、ÉE10で働いていない。最後のテーブルのtdは影響を受けません。それは正常に変わらなければならない。テキストデコレーションソリッドはIE 10ではサポートされていません
.gridview tr
{
font-size: 20px;
border: solid 1px #c1c1c1;
padding-bottom: 3px;
padding-top: 3px;
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
background-color: #EEEEEE;
}
.noadres td {
text-decoration:line-through;
font-style:italic;
background-color:#f5eded;
}
.noadres td.etkabone {
text-decoration:solid;
font-style:normal;
}
HTML
<table class="gridview">
<tr class="noadres">
<td>HELLO</td>
<td>MY</td>
<td class="etkabone" >NAME</td>
</tr>
</table>
https://jsfiddle.net/dwc7kjmo/
これはなんですか? 'text-decoration:solid;'?無効です。たぶん古いIEは、ChromeやFirefoxとは違って正規の値に正常に戻ってしまうことはありませんか? – curveball