1

私のIE8はフィギュアタグ内の画像を表示しません。

TYPO3 インストール 6.1.x DOCTYPE HTML5 CSS スタイルのコンテンツ (最新)

フロントエンド: テキストと画像は次のように表示されます

<div class="csc-textpic-imagewrap">
<div class="csc-textpic-center-outer">
<div class="csc-textpic-center-inner">
  <figure class="csc-textpic-image csc-textpic-last">
      <img height="308" width="828" alt="" src="fileadmin/media/image.JPG">
 </figure>
</div>
</div>
</div>

HTML5shiv スクリプトを含めました - 何も起こりません..次に、jQuery で Figure 要素をアンラップしようとします - 何も起こりません

でラップされた画像を表示する方法を知っている人はいますか

4

3 に答える 3

1

それは反応の良い大きなものでした

img {
  max-width: auto;
  width: 100%;
  /* and for IE 8 */
  width: auto\9;
}

それだけです。

于 2013-09-12T15:12:00.810 に答える
0

私は同じ問題を抱えていました:

tt_content.image.20.rendering.singleNoCaption.singleStdWrap.wrap.override >
tt_content.image.20.rendering.noCaption.singleStdWrap.wrap.override >

または、削除する代わりに、好きな html に置き換えます。

于 2013-09-12T12:46:51.737 に答える
0

これを設定タイプスクリプトで設定するだけです

 doctype = html5
于 2014-11-17T06:05:04.043 に答える