LoginSignup
0
0

More than 5 years have passed since last update.

Egdeでflexされたtdに対して、子要素が横並びしない

Last updated at Posted at 2016-11-06

以下html・cssで、tdに対してflexをかました。
その子要素divは横並びするが、Edgeは横並びにならない。
【対策】
しかたなくtdへのflexはあきらめた。
またdivに対して、float:leftで対応した

▼css


td{display:flex;}


▼html


<table>
<tr>
<td><div>AAAA</div><div>BBB</div></td>
</tr>
</table>


0
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
0
0