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.
div の高さが 385px で、IE を除くすべてのブラウザで正常に動作するアプリケーションを開発中です。
ここにあなたがそれを行うことができるJavaScriptのサンプルがあります:
var browsername = navigator.appName; var yourdiv = document.getElementById("yourdivID"); if (browsername == "Microsoft Internet Explorer"){ yourdiv.style.height = "200px"; }