Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Chrome では下の境界線が表示されますが、IE8 では表示されません。これを IE8 で修正するにはどうすればよいですか?
<table> <tr> <td>test</td> </tr> <tr> <td style="border-bottom: 1px solid black;"></td> </tr> </table>
<!DOCTYPE htmlファイルの先頭にdoctype > を追加し、要素<html>と<body>要素を含めると、機能するはずです。Doctypeを使用しないことで、癖モードをトリガーしています。
<!DOCTYPE html
<html>
<body>