LoginSignup
1
1

More than 5 years have passed since last update.

IE10で<img>にwidth=""を指定するとwidth="1"になる件

Posted at

タイトルの通り、IE10で <img> 要素に width=""height="" などといった空の属性を指定すると width="1"height="1"強制変更されるので注意。

これが

<img src="xxx.jpg" width="" height="" alt="">

こうなる

<img src="xxx.jpg" width="1" height="1" alt="">

 

すると

 

 

_人人人人人人人人人人人_
> 画像が表示されない <
 ̄Y^Y^Y^Y^Y^Y^Y^Y^Y^Y ̄

 

 

空の属性はバグのもとですので、使用は避けましょう。

というかこんなバグ初めて知りました。
ほんとにあった、怖い話です。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1