LoginSignup
2
0

More than 5 years have passed since last update.

IE11とEdgeでボタンの文字が改行しないときはbuttonタグを使うとよい

Posted at

参考: IE11でボタンのtextを改行するには

現象

IE11やEdgeでは以下だとボタンの文字が改行しない。

<input type="submit" value="push
me" />

回避方法

buttonタグを使う

<button type="submit">push<br>me</button>
2
0
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
2
0