tableなどのtdタグにsvg画像をimgタグを用いて表示しています。
ブラウザを縮小させていくにつれてtableサイズも狭まっていくと思うのですが、svg画像は元のサイズを維持してしまっています。
この現象はInternetExploer(11)で発生しており、chromeなどのブラウザではtableに設定したwidthにheightに合わせてsvg画像も縮小していきます。
IE11でもブラウザ縮小に合わせてsvg画像を縮小させていくことは可能でしょうか?
html
1<!DOCTYPE html> 2<html lang="en"> 3<head> 4 <meta charset="UTF-8"> 5 <title>Document</title> 6 <link rel="stylesheet" href="css.css"> 7</head> 8<body> 9 <table> 10 <tr> 11 <th>1</th> 12 <th>2</th> 13 <th>3</th> 14 <th>4</th> 15 <th>5</th> 16 </tr> 17 <tr> 18 <td>テキストテキストテキストテキストテキスト</td> 19 <td>テキストテキストテキストテキストテキスト</td> 20 <td>テキストテキストテキストテキストテキスト</td> 21 <td><img src="〇〇.svg"></td> 22 <td>テキストテキストテキストテキストテキスト</td> 23 </tr> 24 <tr> 25 <td>テキストテキストテキストテキストテキスト</td> 26 <td>テキストテキストテキストテキストテキスト</td> 27 <td>テキストテキストテキストテキストテキスト</td> 28 <td><img src="〇〇.svg"></td> 29 <td>テキストテキストテキストテキストテキスト</td> 30 </tr> 31 <tr> 32 <td>テキストテキストテキストテキストテキスト</td> 33 <td>テキストテキストテキストテキストテキスト</td> 34 <td>テキストテキストテキストテキストテキスト</td> 35 <td><img src="〇〇.svg"></td> 36 <td>テキストテキストテキストテキストテキスト</td> 37 </tr> 38 </table> 39</body> 40</html>
css
1table, td, th { 2 border: 1px solid black; 3 background-color: burlywood 4} 5 6th { 7 width: 200px; 8 height: 200px; 9 min-width: 100px; 10 min-height: 100px; 11}
あなたの回答
tips
プレビュー