Source code
Revision control
Copy as Markdown
Other Tools
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
/**
* www.jal.co.jp - tables are not rendered correctly
*
* The site adds min-width:max-content to the tables in quesiton, which other
* browsers ignore in different ways. We can just unapply that rule to fix it.
*/
.fixed_th1st table {
min-width: unset;
}